BOSS 7.1.0
BESIII Offline Software System
Loading...
Searching...
No Matches
K0kk.h
Go to the documentation of this file.
1#ifndef K_KK_H
2#define K_KK_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 K0kk
21{
22 public:
23 K0kk();
24 ~K0kk();
25
26 public:
27 inline bool Getk0kkmd() { return k0kkmd; }
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 k0kkmd;
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: K0kk.h:18
std::vector< double > Vdouble
Definition: K0kk.h:17
std::vector< int > Vint
Definition: K0kk.h:16
Definition: K0kk.h:21
double GetCQtm()
Definition: K0kk.h:30
void MTotal(double event, SmartDataPtr< EvtRecTrackCol > evtRecTrkCol, Vint iGood, Vint iGam, double Ebeam, int PID_flag, int Charge_candidate_D)
Definition: K0kk.cxx:33
bool Getk0kkmd()
Definition: K0kk.h:27
Vint GettagGam1()
Definition: K0kk.h:34
double GetdelE_tag()
Definition: K0kk.h:31
Vint Gettagtrk1()
Definition: K0kk.h:32
double Gettagmd()
Definition: K0kk.h:28
HepLorentzVector Gettagp1()
Definition: K0kk.h:33
K0kk()
Definition: K0kk.cxx:26
~K0kk()
Definition: K0kk.cxx:29
double Getmass_bc()
Definition: K0kk.h:29