BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
K0pipi.h
Go to the documentation of this file.
1#ifndef K_PIPI_H
2#define K_PIPI_H
3
4#include "DstEvent/TofHitStatus.h"
5#include "EvtRecEvent/EvtRecEvent.h"
6#include "EvtRecEvent/EvtRecTrack.h"
7#include "GaudiKernel/SmartDataPtr.h"
8
9#include "CLHEP/Geometry/Point3D.h"
10#include "CLHEP/Vector/LorentzVector.h"
11#include "CLHEP/Vector/ThreeVector.h"
12#include "CLHEP/Vector/TwoVector.h"
13#include "ParticleID/ParticleID.h"
14#include <vector>
15
16typedef std::vector<int> Vint;
17typedef std::vector<double> Vdouble;
18typedef std::vector<HepLorentzVector> Vp4;
19
20class K0pipi {
21public:
22 K0pipi();
23 ~K0pipi();
24
25public:
26 inline bool Getk0pipimd() { return k0pipimd; }
27 inline double Gettagmd() { return tagmd; }
28 inline double Getmass_bc() { return mass_bc; }
29 inline double GetCQtm() { return cqtm; }
30 inline double GetdelE_tag() { return delE_tag; }
31 inline Vint Gettagtrk1() { return iGoodtag; }
32 inline HepLorentzVector Gettagp1() { return ptag; }
33 inline Vint GettagGam1() { return iGamtag; }
34
35public:
36 void MTotal( double event, SmartDataPtr<EvtRecTrackCol> evtRecTrkCol, Vint iGood, Vint iGam,
37 double Ebeam, int PID_flag, int Charge_candidate_D );
38
39private:
40 bool k0pipimd;
41 double tagmd;
42 double mass_bc;
43 double cqtm;
44 double delE_tag;
45 Vint iGoodtag;
46 HepLorentzVector ptag;
47 Vint iGamtag;
48};
49
50#endif
std::vector< HepLorentzVector > Vp4
Definition Gam4pikp.cxx:38
std::vector< double > Vdouble
Definition Gam4pikp.cxx:39
std::vector< int > Vint
Definition Gam4pikp.cxx:37
std::vector< int > Vint
Definition K0pipi.h:16
double GetdelE_tag()
Definition K0pipi.h:30
K0pipi()
Definition K0pipi.cxx:28
bool Getk0pipimd()
Definition K0pipi.h:26
~K0pipi()
Definition K0pipi.cxx:30
void MTotal(double event, SmartDataPtr< EvtRecTrackCol > evtRecTrkCol, Vint iGood, Vint iGam, double Ebeam, int PID_flag, int Charge_candidate_D)
Definition K0pipi.cxx:32
HepLorentzVector Gettagp1()
Definition K0pipi.h:32
double Gettagmd()
Definition K0pipi.h:27
Vint GettagGam1()
Definition K0pipi.h:33
double GetCQtm()
Definition K0pipi.h:29
double Getmass_bc()
Definition K0pipi.h:28
Vint Gettagtrk1()
Definition K0pipi.h:31