BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
Sing.h
Go to the documentation of this file.
1#ifndef SING_TAG_H
2#define SING_TAG_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 Sing {
21public:
22 Sing();
23 ~Sing();
24
25public:
26 inline bool Getoktg() { return oktg; }
27 inline double Gettagmd() { return tagmd_temp; }
28 inline double Getmass_bc() { return mass_bc_temp; }
29 inline double GetCQtm() { return cqtm_temp; }
30 inline double GetdelE_tag() { return delE_tag_temp; }
31 inline Vint Gettagtrk1() { return iGoodtag_temp; }
32 inline HepLorentzVector Gettagp1() { return ptag_temp; }
33 inline Vint GettagGam1() { return iGamtag_temp; }
34
35public:
36 void Mdset( double event, SmartDataPtr<EvtRecTrackCol> evtRecTrkCol, Vint iGood, Vint iGam,
37 int mdset, double Ebeam, int PID_flag, int Charge_candidate_D );
38
39protected:
40 bool oktg;
41 double tagmd_temp;
43 double cqtm_temp;
46 HepLorentzVector ptag_temp;
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 Sing.h:16
HepLorentzVector Gettagp1()
Definition Sing.h:32
double cqtm_temp
Definition Sing.h:43
Vint GettagGam1()
Definition Sing.h:33
double mass_bc_temp
Definition Sing.h:42
double delE_tag_temp
Definition Sing.h:44
HepLorentzVector ptag_temp
Definition Sing.h:46
double Gettagmd()
Definition Sing.h:27
bool oktg
Definition Sing.h:40
double tagmd_temp
Definition Sing.h:41
Vint iGoodtag_temp
Definition Sing.h:45
double GetdelE_tag()
Definition Sing.h:30
double Getmass_bc()
Definition Sing.h:28
void Mdset(double event, SmartDataPtr< EvtRecTrackCol > evtRecTrkCol, Vint iGood, Vint iGam, int mdset, double Ebeam, int PID_flag, int Charge_candidate_D)
Definition Sing.cxx:51
Vint iGamtag_temp
Definition Sing.h:47
bool Getoktg()
Definition Sing.h:26
Vint Gettagtrk1()
Definition Sing.h:31
double GetCQtm()
Definition Sing.h:29
Sing()
Definition Sing.cxx:47
~Sing()
Definition Sing.cxx:49