3 #include <phparameter/PHParameters.h>
4 #include <phparameter/PHParametersContainer.h>
6 #include <pdbcalbase/PdbParameterMap.h>
7 #include <pdbcalbase/PdbParameterMapContainer.h>
25 paramscontainer(
NULL),
32 superdetector(
"NONE"),
38 nam << name <<
"_" << lyr;
39 Name(nam.str().c_str());
47 savetopNode = topNode;
60 string g4geonodename =
"G4GEO_";
61 string paramnodename =
"G4GEOPARAM_";
63 int isSuperDetector = 0;
64 if (superdetector !=
"NONE")
67 paramscontainer = findNode::getClass<PHParametersContainer>(parNode,g4geonodename);
68 if (! paramscontainer)
81 paramnodename += superdetector;
82 calibdetname = superdetector;
108 std::cout <<
PHWHERE <<
"FIXME!" << std::endl;
125 if (superdetector !=
"NONE")
140 cout <<
Name() << endl;
143 beginrunexecuted = 1;
150 superdetector = name;
157 if (default_double.find(name) == default_double.end())
159 cout <<
"double parameter " << name <<
" not implemented" << endl;
160 cout <<
"implemented double parameters are:" << endl;
161 for (map<const string, double>::const_iterator iter = default_double.begin(); iter != default_double.end(); ++iter)
163 cout << iter->first << endl;
167 dparams[name] = dval;
179 if (default_vdouble.find(name) == default_vdouble.end())
181 cout <<
"vdouble parameter " << name <<
" not implemented" << endl;
182 cout <<
"implemented vdouble parameters are:" << endl;
183 for (map<
const string, std::vector<double> >::const_iterator iter = default_vdouble.begin(); iter != default_vdouble.end(); ++iter)
185 cout << iter->first << endl;
189 vdparams[name] = vdval;
195 std::vector<double> vdval;
196 vdval.assign(dvals, dvals+n);
209 if (default_int.find(name) == default_int.end())
211 cout <<
"integer parameter " << name <<
" not implemented" << endl;
212 cout <<
"implemented integer parameters are:" << endl;
213 for (map<const string, int>::const_iterator iter = default_int.begin(); iter != default_int.end(); ++iter)
215 cout << iter->first << endl;
219 iparams[name] = ival;
231 if (default_string.find(name) == default_string.end())
233 cout <<
"string parameter " << name <<
" not implemented" << endl;
234 cout <<
"implemented string parameters are:" << endl;
235 for (map<const string, string>::const_iterator iter = default_string.begin(); iter != default_string.end(); ++iter)
237 cout << iter->first << endl;
241 cparams[name] = sval;
253 for (map<const string,double>::const_iterator iter = dparams.begin(); iter != dparams.end(); ++iter)
257 for (
auto iter = vdparams.begin(); iter != vdparams.end(); ++iter)
261 for (map<const string,int>::const_iterator iter = iparams.begin(); iter != iparams.end(); ++iter)
265 for (map<const string,string>::const_iterator iter = cparams.begin(); iter != cparams.end(); ++iter)
275 if (default_double.find(name) == default_double.end())
277 default_double[name] = dval;
281 cout <<
"trying to overwrite default double " << name <<
" "
282 << default_double[name] <<
" with " << dval << endl;
291 if (default_vdouble.find(name) == default_vdouble.end())
293 default_vdouble[name] = vdval;
297 cout <<
"trying to overwrite default double " << name <<
" "
312 if (default_int.find(name) == default_int.end())
314 default_int[name] = ival;
318 cout <<
"trying to overwrite default int " << name <<
" "
319 << default_int[name] <<
" with " << ival << endl;
328 if (default_string.find(name) == default_string.end())
330 default_string[name] = sval;
334 cout <<
"trying to overwrite default string " << name <<
" "
335 << default_string[name] <<
" with " << sval << endl;
351 for (map<const string,double>::const_iterator iter = default_double.begin(); iter != default_double.end(); ++iter)
355 for (
auto iter = default_vdouble.begin(); iter != default_vdouble.end(); ++iter)
359 for (map<const string,int>::const_iterator iter = default_int.begin(); iter != default_int.end(); ++iter)
363 for (map<const string,string>::const_iterator iter = default_string.begin(); iter != default_string.end(); ++iter)
383 cout <<
"problem committing to DB" << endl;
402 cout <<
"problem reading from DB" << endl;
466 iparams[
"active"] = i;
472 iparams[
"absorberactive"] = i;
478 iparams[
"blackhole"] = i;
484 iparams[
"absorbertruth"] = i;
virtual const std::string Name() const
Returns the name of this module.
virtual int Verbosity() const
Gets the verbosity of this module.
PHBoolean addNode(PHNode *)
void SetActive(const int i=1)
void set_default_vdouble_param(const std::string &name, const std::vector< double > &dval)
void set_vdouble_param(const std::string &name, const std::vector< double > vdval)
const std::string SuperDetector() const
int InitRun(PHCompositeNode *) final
void set_double_param(const std::string &name, const double dval)
int ReadParamsFromDB(const std::string &name, const int issuper)
void set_default_double_param(const std::string &name, const double dval)
int Init(PHCompositeNode *) final
void UpdateParametersWithMacro()
void BlackHole(const int i=1)
FILE_TYPE get_filetype() const
virtual int InitSubsystem(PHCompositeNode *)
std::vector< double > get_vdouble_param(const std::string &name) const
void set_string_param(const std::string &name, const std::string &sval)
void set_default_string_param(const std::string &name, const std::string &sval)
void set_int_param(const std::string &name, const int ival)
double get_double_param(const std::string &name) const
void SetAbsorberTruth(const int i=1)
int get_int_param(const std::string &name) const
virtual int InitRunSubsystem(PHCompositeNode *)
std::string get_string_param(const std::string &name) const
virtual void SetDefaultParameters()=0
void InitializeParameters()
void SetAbsorberActive(const int i=1)
PHG4DetectorSubsystem(const std::string &name="GenericSubsystem", const int lyr=0)
void set_default_int_param(const std::string &name, const int ival)
PHNode * findFirst(const std::string &, const std::string &)
void AddPHParameters(const int layer, PHParameters *params)
void set_string_param(const std::string &name, const std::string &str)
double get_double_param(const std::string &name) const
void set_name(const std::string &name)
int get_int_param(const std::string &name) const
void FillFrom(const PdbParameterMap *saveparams)
void set_int_param(const std::string &name, const int ival)
void set_double_param(const std::string &name, const double dval)
void SaveToNodeTree(PHCompositeNode *topNode, const std::string &nodename)
std::string get_string_param(const std::string &name) const
void set_vdouble_param(const std::string &name, const vdouble vdval)
vdouble get_vdouble_param(const std::string &name) const