Class Reference for E1039 Core & Analysis Software
SQMCEvent_v1.cxx
Go to the documentation of this file.
1 #include <phool/phool.h>
2 #include "SQMCEvent_v1.h"
3 using namespace std;
4 
6  : _proc_id(0)
7  , _xsec(.0)
8  , _weight(1.0)
9 {
10  for (int ii = 0; ii < 4; ii++) {
11  _par_id [ii] = 0;
12  _par_mom[ii].SetXYZT(0,0,0,0);
13  }
14 }
15 
17 {
18  ;
19 }
20 
21 void SQMCEvent_v1::identify(std::ostream& os) const
22 {
23  ;
24 }
25 
27 {
28  ;
29 }
30 
31 int SQMCEvent_v1::get_particle_id(const int i) const
32 {
33  if (i < 0 || i >= _N_PAR) {
34  cerr << PHWHERE << " Invalid index:" << i << endl;
35  return 0;
36  }
37  return _par_id[i];
38 }
39 
40 void SQMCEvent_v1::set_particle_id(const int i, const int a)
41 {
42  if (i < 0 || i >= _N_PAR) {
43  cerr << PHWHERE << " Invalid index:" << i << endl;
44  return;
45  }
46  _par_id[i] = a;
47 }
48 
49 TLorentzVector SQMCEvent_v1::get_particle_momentum(const int i) const
50 {
51  if (i < 0 || i >= _N_PAR) {
52  cerr << PHWHERE << " Invalid index:" << i << endl;
53  return TLorentzVector(0,0,0,0);
54  }
55  return _par_mom[i];
56 }
57 
58 void SQMCEvent_v1::set_particle_momentum(const int i, const TLorentzVector a)
59 {
60  if (i < 0 || i >= _N_PAR) {
61  cerr << PHWHERE << " Invalid index:" << i << endl;
62  return;
63  }
64  _par_mom[i] = a;
65 }
static const int _N_PAR
Definition: SQMCEvent_v1.h:32
void Reset()
Clear Event.
void set_particle_momentum(const int i, const TLorentzVector a)
TLorentzVector _par_mom[_N_PAR]
Definition: SQMCEvent_v1.h:37
int _par_id[_N_PAR]
Definition: SQMCEvent_v1.h:36
void identify(std::ostream &os=std::cout) const
void set_particle_id(const int i, const int a)
int get_particle_id(const int i) const
Return the particle ID of the primary process, where i=0...3 for "0 + 1 -> 2 + 3".
virtual ~SQMCEvent_v1()
TLorentzVector get_particle_momentum(const int i) const
Return the particle momentum of the primary process, where i=0...3 for "0 + 1 -> 2 + 3".
#define PHWHERE
Definition: phool.h:23