Class Reference for E1039 Core & Analysis Software
PHG4Reco.h
Go to the documentation of this file.
1 #ifndef PHG4Reco_h
2 #define PHG4Reco_h
3 
4 #include <fun4all/SubsysReco.h>
5 
6 #include <phfield/PHFieldConfig.h>
7 
8 #include <phool/PHTimeServer.h>
9 
10 #include <list>
11 
12 // Forward declerations
13 class PHCompositeNode;
14 class G4RunManager;
16 class PHG4PhenixDetector;
20 class PHG4Subsystem;
21 class PHG4EventGenerator;
22 class G4VModularPhysicsList;
24 class G4VUserPrimaryGeneratorAction;
25 class PHG4UIsession;
26 
27 // for the G4 cmd interface and the graphics
28 class G4UImanager;
29 class G4VisManager;
30 
36 class PHG4Reco : public SubsysReco
37 {
38  public:
40  PHG4Reco(const std::string &name = "PHG4RECO");
41 
43  virtual ~PHG4Reco();
44 
46  int Init(PHCompositeNode *);
47 
48  int InitRun(PHCompositeNode *topNode);
49 
52 
55 
57  int End(PHCompositeNode *);
58 
60  void Print(const std::string &what = std::string()) const;
61 
64  {
65  subsystems_.push_back(subsystem);
66  }
67 
69  int ApplyCommand(const std::string &cmd);
70 
72  int StartGui();
73 
74  int InitField(PHCompositeNode *topNode);
75 
77  void set_field(const float tesla)
78  {
79  magfield = tesla;
80  }
81 
85  void set_field_map(const std::string &fmap, const PHFieldConfig::FieldConfigTypes dim)
86  {
87  fieldmapfile = fmap;
88  mapdim = dim;
89  }
90 
95  void set_field_map();
96 
98  void set_field_rescale(const float rescale) { magfield_rescale = rescale; }
99 
101  void set_optical_photon(bool b) { optical_photon_ = b; }
102  void set_energy_threshold(double t) { energy_threshold_ = t; }
103  void set_zero_field_line(double z) { zero_field_line_ = z; }
104 
106  void save_DST_geometry(bool b) { save_DST_geometry_ = b; }
107  void SetWorldSizeX(const double sx) { WorldSize[0] = sx; }
108  void SetWorldSizeY(const double sy) { WorldSize[1] = sy; }
109  void SetWorldSizeZ(const double sz) { WorldSize[2] = sz; }
110  double GetWorldSizeX() const { return WorldSize[0]; }
111  double GetWorldSizeY() const { return WorldSize[1]; }
112  double GetWorldSizeZ() const { return WorldSize[2]; }
113  void SetWorldShape(const std::string &s) { worldshape = s; }
114  void SetWorldMaterial(const std::string &s) { worldmaterial = s; }
115  void SetPhysicsList(const std::string &s) { physicslist = s; }
116  void set_rapidity_coverage(const double eta);
117 
119 
120  static void G4Seed(const unsigned int i);
121 
122  // this is an ugly hack to get Au ions working for CAD
123  // our particle generators have pdg build in which doesn't work
124  // with ions, so the generator action has to be replaced
125  // which is hardcoded in PHG4Reco (it has to be created after
126  // the physics lists are instantiated
127  void setGeneratorAction(G4VUserPrimaryGeneratorAction *action);
128 
129  PHG4Subsystem *getSubsystem(const std::string &name);
130 
131  void Dump_GDML(const std::string &filename);
132 
133  void G4Verbosity(const int i);
134  protected:
135  int InitUImanager();
136  void DefineMaterials();
137  void DefineRegions();
138  float magfield;
140  double WorldSize[3];
141 
144 
146  G4RunManager *runManager_;
147 
150 
153 
156 
159 
162 
165 
167  typedef std::list<PHG4Subsystem *> SubsystemList;
169 
170  // visualization
171  G4VisManager *visManager;
172 
175  std::string fieldmapfile;
176  std::string worldshape;
177  std::string worldmaterial;
178  std::string physicslist;
179 
181 
184 
186  bool optical_photon_; //< enable process for the optical photon, default disabled
187  double energy_threshold_; //< kill low-energy tracks fast, set to 0. to disable
188  double zero_field_line_; //< z position after which the field manager will be set to nullptr, set to numbers larger than the world size to disable
189 };
190 
191 #endif
PHTimer server for accessing external information.
this is the main detector construction class, passed to geant to construct the entire phenix detector
Runs G4 as a subsystem.
Definition: PHG4Reco.h:37
void set_field_map()
Definition: PHG4Reco.cc:309
void DefineRegions()
Definition: PHG4Reco.cc:1368
void set_optical_photon(bool b)
speed-up options setters
Definition: PHG4Reco.h:101
double zero_field_line_
Definition: PHG4Reco.h:188
PHG4PhenixTrackingAction * trackingAction_
pointer to main tracking action
Definition: PHG4Reco.h:161
PHG4PhenixEventAction * eventAction_
pointer to main event action
Definition: PHG4Reco.h:155
void set_field_rescale(const float rescale)
set default scaling factor for input magnetic field map. If available, Field map setting on DST take ...
Definition: PHG4Reco.h:98
void set_field_map(const std::string &fmap, const PHFieldConfig::FieldConfigTypes dim)
Definition: PHG4Reco.h:85
void set_energy_threshold(double t)
Definition: PHG4Reco.h:102
double _eta_coverage
Definition: PHG4Reco.h:173
int ResetEvent(PHCompositeNode *)
Clean up after each event.
Definition: PHG4Reco.cc:663
void set_zero_field_line(double z)
Definition: PHG4Reco.h:103
int StartGui()
start the gui
Definition: PHG4Reco.cc:576
SubsystemList subsystems_
Definition: PHG4Reco.h:168
PHG4Reco(const std::string &name="PHG4RECO")
constructor
Definition: PHG4Reco.cc:116
std::string worldshape
Definition: PHG4Reco.h:176
double energy_threshold_
Definition: PHG4Reco.h:187
void Dump_GDML(const std::string &filename)
Definition: PHG4Reco.cc:562
void save_DST_geometry(bool b)
Save geometry from Geant4 to DST.
Definition: PHG4Reco.h:106
void SetWorldSizeX(const double sx)
Definition: PHG4Reco.h:107
void SetWorldSizeY(const double sy)
Definition: PHG4Reco.h:108
int Init(PHCompositeNode *)
full initialization
Definition: PHG4Reco.cc:170
void setGeneratorAction(G4VUserPrimaryGeneratorAction *action)
Definition: PHG4Reco.cc:712
PHTimeServer::timer _timer
module timer.
Definition: PHG4Reco.h:183
PHG4PrimaryGeneratorAction * generatorAction_
event generator (read from PHG4INEVENT node)
Definition: PHG4Reco.h:164
int InitField(PHCompositeNode *topNode)
Definition: PHG4Reco.cc:268
float magfield
Definition: PHG4Reco.h:138
double GetWorldSizeY() const
Definition: PHG4Reco.h:111
bool optical_photon_
speed up options
Definition: PHG4Reco.h:186
bool save_DST_geometry_
Definition: PHG4Reco.h:180
std::list< PHG4Subsystem * > SubsystemList
list of subsystems
Definition: PHG4Reco.h:167
std::string physicslist
Definition: PHG4Reco.h:178
void set_rapidity_coverage(const double eta)
Definition: PHG4Reco.cc:721
PHG4PhenixDetector * detector_
pointer to detector
Definition: PHG4Reco.h:152
virtual ~PHG4Reco()
destructor
Definition: PHG4Reco.cc:153
int ApplyCommand(const std::string &cmd)
interface to G4 cmd interpreter
Definition: PHG4Reco.cc:568
G4VisManager * visManager
Definition: PHG4Reco.h:171
void SetWorldMaterial(const std::string &s)
Definition: PHG4Reco.h:114
std::string worldmaterial
Definition: PHG4Reco.h:177
void DefineMaterials()
Definition: PHG4Reco.cc:753
double WorldSize[3]
Definition: PHG4Reco.h:140
PHFieldConfig::FieldConfigTypes mapdim
Definition: PHG4Reco.h:174
int InitRun(PHCompositeNode *topNode)
Definition: PHG4Reco.cc:322
void Print(const std::string &what=std::string()) const
print info
Definition: PHG4Reco.cc:679
G4TBMagneticFieldSetup * field_
magnetic field
Definition: PHG4Reco.h:143
int End(PHCompositeNode *)
end of run method
Definition: PHG4Reco.cc:674
void SetWorldSizeZ(const double sz)
Definition: PHG4Reco.h:109
void registerSubsystem(PHG4Subsystem *subsystem)
register subsystem
Definition: PHG4Reco.h:63
int process_event(PHCompositeNode *)
event processing method
Definition: PHG4Reco.cc:602
int InitUImanager()
Definition: PHG4Reco.cc:588
void SetWorldShape(const std::string &s)
Definition: PHG4Reco.h:113
double GetWorldSizeX() const
Definition: PHG4Reco.h:110
static void G4Seed(const unsigned int i)
Definition: PHG4Reco.cc:727
double GetWorldSizeZ() const
Definition: PHG4Reco.h:112
PHG4PhenixSteppingAction * steppingAction_
pointer to main stepping action
Definition: PHG4Reco.h:158
float magfield_rescale
Definition: PHG4Reco.h:139
void SetPhysicsList(const std::string &s)
Definition: PHG4Reco.h:115
void G4Verbosity(const int i)
Definition: PHG4Reco.cc:1405
G4RunManager * runManager_
pointer to geant run manager
Definition: PHG4Reco.h:146
std::string fieldmapfile
Definition: PHG4Reco.h:175
int setupInputEventNodeReader(PHCompositeNode *)
Definition: PHG4Reco.cc:694
PHG4UIsession * uisession_
pointer to geant ui session
Definition: PHG4Reco.h:149
void set_field(const float tesla)
set default magnetic field strength with a constant magnetic field. Only valid if set_field_map() is ...
Definition: PHG4Reco.h:77
PHG4Subsystem * getSubsystem(const std::string &name)
Definition: PHG4Reco.cc:1386
wrapper around PHTimer, for storage in a map
Definition: PHTimeServer.h:35
string cmd
Definition: submit_bnl.py:63