//*-- AUTHOR : Ilse Koenig //*-- Created : 28/01/2009 //_HADES_CLASS_DESCRIPTION /////////////////////////////////////////////////////////////////////////// // // HParCond // // Base class for all condition-stype parameter containers // // The following functions must be implemented by the derived class: // // void putParams(HParamList*) Fills all persistent data members into // the list for write. // // Bool_t getParams(HParamList*) Fills all persistent data members from // the list after reading. The function // returns false, when a data member is // not in the list. // /////////////////////////////////////////////////////////////////////////// #include "hparcond.h" #include "hparamlist.h" #include #include ClassImp(HParCond) void HParCond::printParams() { // prints information about the container std::cout<<"\n---------------------------------------------\n"; std::cout<<"----- "<print(); std::cout<<"---------------------------------------------\n\n"; delete condList; }