//*-- AUTHOR : Denis Bertini //*-- Created : 21/06/2005 using namespace std; #include "PndSttRecoPar.h" #include "FairParamList.h" #include #include ClassImp(PndSttRecoPar) PndSttRecoPar::PndSttRecoPar(const char* name,const char* title,const char* context) : FairParGenericSet(name,title,context), fTest(-1) { } PndSttRecoPar::~PndSttRecoPar(void) { } PndSttRecoPar::PndSttRecoPar(PndSttRecoPar& par) : fTest(par.GetTest()) { } void PndSttRecoPar::clear(void) {} void PndSttRecoPar::putParams(FairParamList* l) { if (!l) return; l->add("Tube_Test", fTest); } Bool_t PndSttRecoPar::getParams(FairParamList* l) { if (!l) return kFALSE; if (!l->fill("Tube_Test", &fTest) ) return kFALSE; return kTRUE; }