Class Reference for E1039 Core & Analysis Software
SQSingleMuonGen.h
Go to the documentation of this file.
1 #ifndef SQSingleMuonGen_H__
2 #define SQSingleMuonGen_H__
3 
5 #include <string>
6 
7 #include <TVector3.h>
8 #include <TRandom2.h>
9 #include <TF1.h>
10 
11 #include "SQSingleMuonTruthInfo.h"
12 
13 class PHG4InEvent;
14 class PHG4Particle;
15 class PHG4VtxPoint;
16 class PHCompositeNode;
17 
19 {
20 public:
21 
22  SQSingleMuonGen(const std::string& name = "SINGLEGEN");
23  virtual ~SQSingleMuonGen();
24 
25  int InitRun(PHCompositeNode *topNode);
26  int process_event(PHCompositeNode *topNode);
27 
28  const void set_target_only(bool en = true) { _target_only = en; }
29  const void enable_geom_cut(bool en = true) { _enable_geom_cut = en; }
30  const void set_mother_decay_length(double l) { _ctau = l; }
31  const void set_charge_ratio(double v) { _charge_ratio = v/(v+1.); }
32  const void set_pt_max(double v) { _pt_max = v; }
33  const void set_mom_range(double min, double max) { _mom_min = min; _mom_max = max; }
34  const void enable_real_mom_dist(bool en = true) { _enable_real_mom_dist = en; }
35 
36 private:
38  bool generatePrimaryVtx();
39 
41  void generateMotherParticle();
42  void decayMotherParticle();
43 
45  bool geometryCut();
46 
48  PHG4InEvent* _ineve;
49 
51  SQSingleMuonTruthInfo* _truth;
52 
54  double _mom_min;
55  double _mom_max;
56  double _pt_max;
57 
59  bool _target_only;
60 
62  bool _enable_geom_cut;
63 
65  bool _enable_real_mom_dist;
66 
68  double _ctau;
69 
71  double _charge_ratio;
72 
74  TRandom2 _rndm;
75 
77  const double _m_muon;
78  const double _m_pion;
79 
81  TF1* _pz_dist[6];
82  TF1* _pt_dist;
83 };
84 
85 #endif
const void set_charge_ratio(double v)
const void set_target_only(bool en=true)
virtual ~SQSingleMuonGen()
SQSingleMuonGen(const std::string &name="SINGLEGEN")
const void set_mother_decay_length(double l)
const void enable_real_mom_dist(bool en=true)
const void set_pt_max(double v)
int InitRun(PHCompositeNode *topNode)
const void set_mom_range(double min, double max)
int process_event(PHCompositeNode *topNode)
const void enable_geom_cut(bool en=true)