#include <BLParam.hh>
class BLSetParam -- Parameter initialization class Classes that use Parameters should declare a static instance of this class to provide a default value for each such parameter. Take care that the value is of the proper format.
These values are set initally, so "param -unset" will not set them.
Public Member Functions | |
BLSetParam (G4String name, G4String value, G4String helpText="") |
BLSetParam::BLSetParam | ( | G4String | name, | |
G4String | value, | |||
G4String | helpText = "" | |||
) | [inline] |
References BLParam::setHelpText(), and BLParam::setParam().
00116 { Param.setParam(name,value); 00117 if(helpText.size() > 0) Param.setHelpText(name,helpText); 00118 }