//***************************************************************************** // File: addCalorObjects.cc // ---------------------------------------------------------------------------- // Type: Method implementation source // Package: CalorObjects // Class: addCalorObjects // Language: Standard C++ // Project: CDF Run II Offline Software Upgrade // OrigAuth: R. D. Kennedy // Company: Fermilab //============================================================================= // RCS Current Revision Record //----------------------------------------------------------------------------- // $Source: /cdf/code/cdfcvs/run2/CalorObjects/src/addCalorObjects.cc,v $ // $Revision: 1.9 $ // $Date: 2004/12/28 06:29:56 $ // $Author: rgw $ // $State: Exp $ // $Locker: $ //***************************************************************************** //============================================================================= // Declarations and Definitions //============================================================================= #ifndef CALOROBJECTS_ADDCALOROBJECTS_HH #include "CalorObjects/addCalorObjects.hh" #endif #include "CalorObjects/CESQColl.hh" #include "CalorObjects/CESQ_Storable.hh" #include "CalorObjects/CalData.hh" #include "CalorObjects/CesClusterColl.hh" #include "CalorObjects/CprClusterColl.hh" #include "CalorObjects/PesClusterColl.hh" #include "CalorObjects/Pes2dClusterColl.hh" #include "CalorObjects/PhysicsTowerData.hh" #include "CalorObjects/PESQ_Coll.hh" #include "CalorObjects/PlugStripColl.hh" #include "CalorObjects/CPRQColl.hh" #include "CalorObjects/CP2Q_Storable.hh" #include "CalorObjects/CC2Q_Storable.hh" //***************************************************************************** // method Implementation //***************************************************************************** void addCalorObjects(void) { StorableObject* so = 0 ; so = new CalData() ; so->destroy() ; so = new CesClusterColl() ; so->destroy() ; so = new CprClusterColl() ; so->destroy() ; so = new CESQ_Storable() ; so->destroy() ; so = new CESQColl() ; so->destroy() ; so = new CPRQColl() ; so->destroy() ; so = new CP2Q_Storable() ; so->destroy() ; so = new CC2Q_Storable() ; so->destroy() ; so = new PesClusterColl() ; so->destroy() ; so = new Pes2dClusterColl() ; so->destroy() ; so = new PhysicsTowerData() ; so->destroy() ; so = new PESQ_Coll(); so->destroy() ; so = new PlugStripColl(); so->destroy(); } //***************************************************************************** // The End //*****************************************************************************