Class Reference for E1039 Core & Analysis Software
DetectorConstructionWrapper.cxx
Go to the documentation of this file.
1 /*
2  * DetectorConstructionWrapper.C
3  *
4  * Created on: Oct 29, 2017
5  * Author: yuhw@nmsu.edu
6  */
7 
8 
9 
11 
12 #include "DetectorConstruction.hh"
13 
15 #include <fun4all/PHTFileServer.h>
16 #include <phool/PHNodeIterator.h>
17 #include <phool/PHIODataNode.h>
18 #include <phool/getClass.h>
19 
20 //GEANT4
21 #include <G4GDMLParser.hh>
22 
23 #include <TFile.h>
24 
25 #include <cstring>
26 #include <cmath>
27 #include <cfloat>
28 #include <stdexcept>
29 #include <limits>
30 
31 #define LogDebug(exp) std::cout<<"DEBUG: " <<__FUNCTION__<<": "<<__LINE__<<": "<< exp << std::endl
32 #define LogError(exp) std::cout<<"ERROR: " <<__FUNCTION__<<": "<<__LINE__<<": "<< exp << std::endl
33 #define LogWarning(exp) std::cout<<"WARNING: "<<__FUNCTION__<<": "<<__LINE__<<": "<< exp << std::endl
34 
36  const std::string& name):
37  _geometrySchema("geometry_G17_run3"),
38  _fMagStr(FMAGSTR),
39  _kMagStr(KMAGSTR),
40  _out_name("geom.gdml"),
41  _jobOptsSvc(nullptr)
42 {}
43 
45 
46  Settings *mySettings = new Settings();
47  mySettings->geometrySchema = _geometrySchema.c_str();
48 
49  if(fabs(_fMagStr) < 10.) mySettings->fMagMultiplier = _fMagStr;
50  if(fabs(_kMagStr) < 10.) mySettings->kMagMultiplier = _kMagStr;
51 
52  DetectorConstruction* detector = new DetectorConstruction(mySettings);
53 
54  G4GDMLParser parser;
55 
56  parser.Write(_out_name.c_str(), detector->Construct());
57 
59 }
60 
62 
64 }
65 
const double FMAGSTR
Definition: MacroCommon.h:2
const double KMAGSTR
Definition: MacroCommon.h:3
TFile clean handling.
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
DetectorConstructionWrapper(const std::string &name="DetectorConstructionWrapper")
G4VPhysicalVolume * Construct()
G4String geometrySchema
Definition: Settings.hh:48
double kMagMultiplier
Definition: Settings.hh:47
double fMagMultiplier
Definition: Settings.hh:46