CGEM BOSS 6.6.5.g
BESIII Offline Software System
Loading...
Searching...
No Matches
Kkpi0.h
Go to the documentation of this file.
1#ifndef K_KPI0_H
2#define K_KPI0_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
20class Kkpi0
21{
22 public:
23 Kkpi0();
24 ~Kkpi0();
25
26 public:
27 inline bool Getkkpi0md() { return kkpi0md; }
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
37 public:
38 void MTotal(double event,SmartDataPtr<EvtRecTrackCol> evtRecTrkCol, Vint iGood,Vint iGam, double Ebeam, int PID_flag, int Charge_candidate_D);
39
40 private:
41 bool kkpi0md;
42 double tagmd;
43 double mass_bc;
44 double cqtm;
45 double delE_tag;
46 Vint iGoodtag;
47 HepLorentzVector ptag;
48 Vint iGamtag;
49
50};
51
52#endif
std::vector< int > Vint
Definition: Gam4pikp.cxx:52
std::vector< HepLorentzVector > Vp4
Definition: Kkpi0.h:18
std::vector< double > Vdouble
Definition: Kkpi0.h:17
std::vector< int > Vint
Definition: Kkpi0.h:16
Definition: Kkpi0.h:21
bool Getkkpi0md()
Definition: Kkpi0.h:27
HepLorentzVector Gettagp1()
Definition: Kkpi0.h:33
double Getmass_bc()
Definition: Kkpi0.h:29
void MTotal(double event, SmartDataPtr< EvtRecTrackCol > evtRecTrkCol, Vint iGood, Vint iGam, double Ebeam, int PID_flag, int Charge_candidate_D)
Definition: Kkpi0.cxx:35
double GetdelE_tag()
Definition: Kkpi0.h:31
~Kkpi0()
Definition: Kkpi0.cxx:31
Vint GettagGam1()
Definition: Kkpi0.h:34
Vint Gettagtrk1()
Definition: Kkpi0.h:32
double GetCQtm()
Definition: Kkpi0.h:30
Kkpi0()
Definition: Kkpi0.cxx:28
double Gettagmd()
Definition: Kkpi0.h:28