@@ -31,10 +31,6 @@ void SimConfig::initOptions(boost::program_options::options_description& options
3131 " startEvent" , bpo::value<unsigned int >()->default_value (0 ), " index of first event to be used (when applicable)" )(
3232 " extKinFile" , bpo::value<std::string>()->default_value (" Kinematics.root" ),
3333 " name of kinematics file for event generator from file (when applicable)" )(
34- " extGenFile" , bpo::value<std::string>()->default_value (" extgen.C" ),
35- " name of .C file with definition of external event generator" )(
36- " extGenFunc" , bpo::value<std::string>()->default_value (" " ),
37- " function call to load the definition of external event generator" )(
3834 " embedIntoFile" , bpo::value<std::string>()->default_value (" " ),
3935 " filename containing the reference events to be used for the embedding" )(
4036 " bMax,b" , bpo::value<float >()->default_value (0 .), " maximum value for impact parameter sampling (when applicable)" )(
@@ -94,8 +90,6 @@ bool SimConfig::resetFromParsedMap(boost::program_options::variables_map const&
9490 mConfigData .mTrigger = vm[" trigger" ].as <std::string>();
9591 mConfigData .mNEvents = vm[" nEvents" ].as <unsigned int >();
9692 mConfigData .mExtKinFileName = vm[" extKinFile" ].as <std::string>();
97- mConfigData .mExtGenFileName = vm[" extGenFile" ].as <std::string>();
98- mConfigData .mExtGenFuncName = vm[" extGenFunc" ].as <std::string>();
9993 mConfigData .mEmbedIntoFileName = vm[" embedIntoFile" ].as <std::string>();
10094 mConfigData .mStartEvent = vm[" startEvent" ].as <unsigned int >();
10195 mConfigData .mBMax = vm[" bMax" ].as <float >();
0 commit comments