// ------------------------------------------------------------------------- // ----- CbmGenerator source file ----- // ----- Created 23/06/04 by V. Friese ----- // ------------------------------------------------------------------------- #include "CbmGenerator.h" // ----- Default constructor ------------------------------------------- CbmGenerator::CbmGenerator() {} // ------------------------------------------------------------------------- // ----- Constructor with name and title ------------------------------- CbmGenerator::CbmGenerator(const char* name, const char* title) : TNamed(name, title) {} // ------------------------------------------------------------------------- // ----- Destructor ---------------------------------------------------- CbmGenerator::~CbmGenerator() { } // ------------------------------------------------------------------------- ClassImp(CbmGenerator)