BOSS 7.1.2
BESIII Offline Software System
Loading...
Searching...
No Matches
K0pipipi0.h
Go to the documentation of this file.
1#ifndef K_PIPIPI0_H
2#define K_PIPIPI0_H
3
4#include "GaudiKernel/SmartDataPtr.h"
8
10#include <vector>
11#include "CLHEP/Vector/ThreeVector.h"
12#include "CLHEP/Vector/LorentzVector.h"
13#include "CLHEP/Vector/TwoVector.h"
14#include "CLHEP/Geometry/Point3D.h"
15
16typedef std::vector<int> Vint;
17typedef std::vector<double> Vdouble;
18typedef std::vector<HepLorentzVector> Vp4;
19
21{
22 public:
23 K0pipipi0();
24 ~K0pipipi0();
25
26 public:
27 inline bool GetK0pipipi0md() { return k0pipipi0md; }
28 inline double Gettagmd() { return tagmd; }
29 inline double Getmass_bc() { return mass_bc; }
30 inline double GetCQtm() { return cqtm; }
31 inline double GetdelE_tag() { return delE_tag; }
32 inline Vint Gettagtrk1() { return iGoodtag; }
33 inline HepLorentzVector Gettagp1() { return ptag; }
34 inline Vint GettagGam1() { return iGamtag; }
35
36 public:
37 void MTotal(double event,SmartDataPtr<EvtRecTrackCol> evtRecTrkCol, Vint iGood,Vint iGam, double Ebeam, int PID_flag, int Charge_candidate_D);
38
39 private:
40 bool k0pipipi0md;
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
51#endif
std::vector< int > Vint
Definition Gam4pikp.cxx:52
std::vector< HepLorentzVector > Vp4
Definition K0pipipi0.h:18
std::vector< double > Vdouble
Definition K0pipipi0.h:17
std::vector< int > Vint
Definition K0pipipi0.h:16
double GetdelE_tag()
Definition K0pipipi0.h:31
HepLorentzVector Gettagp1()
Definition K0pipipi0.h:33
double Getmass_bc()
Definition K0pipipi0.h:29
bool GetK0pipipi0md()
Definition K0pipipi0.h:27
double Gettagmd()
Definition K0pipipi0.h:28
Vint GettagGam1()
Definition K0pipipi0.h:34
void MTotal(double event, SmartDataPtr< EvtRecTrackCol > evtRecTrkCol, Vint iGood, Vint iGam, double Ebeam, int PID_flag, int Charge_candidate_D)
Definition K0pipipi0.cxx:34
double GetCQtm()
Definition K0pipipi0.h:30
Vint Gettagtrk1()
Definition K0pipipi0.h:32