Belle II Software  release-06-01-15
CleoCones.h
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 
9 #pragma once
10 
11 #include <TVector3.h>
12 
13 #include <vector>
14 
15 namespace Belle2 {
22  class CleoCones {
23  public:
24 
28  CleoCones(const std::vector<TVector3>& p3_cms_all, const std::vector<TVector3>& p3_cms_roe, const TVector3& thrustB,
29  bool calc_CleoCones_with_all, bool calc_CleoCones_with_roe);
30 
34  ~CleoCones() {};
35 
39  std::vector<float> cleo_cone_with_all() { return m_cleo_cone_with_all; }
40 
44  std::vector<float> cleo_cone_with_roe() { return m_cleo_cone_with_roe; }
45 
46  private:
47 
48  std::vector<float> m_cleo_cone_with_all;
49  std::vector<float> m_cleo_cone_with_roe;
51  };
52 
54 } // Belle2 namespace
Class to calculate the Cleo clone variables.
Definition: CleoCones.h:22
std::vector< float > cleo_cone_with_all()
Returns calculated Cleo Cones constructed from all tracks.
Definition: CleoCones.h:39
~CleoCones()
Destructor.
Definition: CleoCones.h:34
std::vector< float > cleo_cone_with_roe()
Returns calculated Cleo Cones constructed from only ROE tracks.
Definition: CleoCones.h:44
std::vector< float > m_cleo_cone_with_roe
Cleo Cones calculated from only ROE tracks.
Definition: CleoCones.h:49
std::vector< float > m_cleo_cone_with_all
Cleo Cones calculated from all tracks.
Definition: CleoCones.h:48
CleoCones(const std::vector< TVector3 > &p3_cms_all, const std::vector< TVector3 > &p3_cms_roe, const TVector3 &thrustB, bool calc_CleoCones_with_all, bool calc_CleoCones_with_roe)
Constructor.
Definition: CleoCones.cc:18
Abstract base class for different kinds of events.