Class Reference for E1039 Core & Analysis Software
SQPileupGen.h
Go to the documentation of this file.
1 #ifndef __SQPileupGen_H__
2 #define __SQPileupGen_H__
3 
4 #include <vector>
5 #include <TString.h>
7 
8 class PHCompositeNode;
10 class PHG4InEvent;
11 class PHG4Particle;
12 
13 class TFile;
14 class TTree;
15 class TClonesArray;
16 class TF1;
17 class TH1;
18 
19 class SQMCEvent;
20 class SQPrimaryVertexGen;
21 class SQEvent;
22 
24 {
25  public:
26  ExtParticle(int evtID, int pdg, const TVector3& pos, const TVector3& mom);
27 
28  public:
29  int _evtID;
30  int _pdg;
31  TVector3 _pos;
32  TVector3 _mom;
33 };
34 
37 {
38  public:
39  SQPileupGen(const std::string& name = "PileupGen");
40  virtual ~SQPileupGen();
41 
42  int Init(PHCompositeNode* topNode);
43  int InitRun(PHCompositeNode* topNode);
45 
46  void setExtInputFile(const TString& name) { _extFileName = name; }
47  void setBucketSize(int n) { _bucketSize = n; }
48  void set_inhibit_threshold (int threshold) {_inhibit_threshold = threshold;}
49  void set_proton_coeff (double coeff) {_proton_coeff = coeff;}
50 
52  {
53  return _beam_intensity_profile;
54  }
55 
57  {
58  return _beam_intensity_profile_histo;
59  }
60 
61  void set_beam_intensity_profile(TF1* beamIntensityProfile)
62  {
63  _beam_intensity_profile = beamIntensityProfile;
64  }
65 
66  void set_beam_intensity_profile_histo(TH1* beamIntensityProfile_histo)
67  {
68  _beam_intensity_profile_histo = beamIntensityProfile_histo;
69  }
70 
71 
72  private:
74  bool readExtTree(int nEvents);
75 
77  SQPrimaryVertexGen* _vertexGen;
78 
80  PHG4InEvent* _ineve;
81  SQMCEvent* _mcevt;
82  SQEvent* _evt; //< An output node
83 
84 
85  TF1* _beam_intensity_profile;
86  TH1* _beam_intensity_profile_histo;
88  std::vector<ExtParticle> _extParticles;
89 
91  int _bucketSize;
92  int _n_proc_evt; //< N of processed events
93 
95  TString _extFileName;
96 
97  TFile* _extFile;
98  TTree* _extTree;
99 
100  int _extEvtID;
101  int _readIdx;
102  int _nExtPar;
103  int _inhibit_threshold;
104  double _proton_coeff;
105  int _extPDG[10000];
106  TClonesArray* _extPos;
107  TClonesArray* _extMom;
108 
109 };
110 
111 #endif
TVector3 _mom
Definition: SQPileupGen.h:32
TVector3 _pos
Definition: SQPileupGen.h:31
ExtParticle(int evtID, int pdg, const TVector3 &pos, const TVector3 &mom)
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
An SQ interface class to hold one simulated-event header.
Definition: SQMCEvent.h:12
An SQ class to pileup the tracks from external file.
Definition: SQPileupGen.h:37
TF1 * get_beam_intensity_profile() const
< Return beam intensity profile function for pileup
Definition: SQPileupGen.h:51
void setExtInputFile(const TString &name)
Set external file with track info for pileup.
Definition: SQPileupGen.h:46
int process_event(PHCompositeNode *topNode)
void set_beam_intensity_profile(TF1 *beamIntensityProfile)
Definition: SQPileupGen.h:61
void setBucketSize(int n)
Set bucket size for pileup.
Definition: SQPileupGen.h:47
void set_beam_intensity_profile_histo(TH1 *beamIntensityProfile_histo)
Definition: SQPileupGen.h:66
int InitRun(PHCompositeNode *topNode)
TH1 * get_beam_intensity_profile_histo() const
< Return beam intensity profile histogram for pileup
Definition: SQPileupGen.h:56
SQPileupGen(const std::string &name="PileupGen")
void set_inhibit_threshold(int threshold)
Set inhibit threshold in QIE if using intensity profile for pileup.
Definition: SQPileupGen.h:48
void set_proton_coeff(double coeff)
Set proton conversion coefficent from QIE count if using intensity profile for pileup.
Definition: SQPileupGen.h:49
int Init(PHCompositeNode *topNode)
virtual ~SQPileupGen()
Class to generate the event vertex, based on the beam profile and the target+spectrometer materials g...