Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:14:45

0001 #ifndef Geometry_HcalCommonData_CaloSimulationConstants_h
0002 #define Geometry_HcalCommonData_CaloSimulationConstants_h
0003 
0004 /** \class CaloSimulationConstants
0005  *
0006  * this class reads the constant section of
0007  * the xml-files related to calorimeter utility for Calo simulation
0008  *  
0009  * \author Sunanda Banerjee, FNAL <sunanda.banerjee@cern.ch>
0010  *
0011  */
0012 
0013 #include "CondFormats/GeometryObjects/interface/CaloSimulationParameters.h"
0014 
0015 class CaloSimulationConstants {
0016 public:
0017   CaloSimulationConstants(const CaloSimulationParameters* cps);
0018   ~CaloSimulationConstants();
0019 
0020   const CaloSimulationParameters* caloSimPar() const { return calospar_; }
0021 
0022 private:
0023   const CaloSimulationParameters* calospar_;
0024 };
0025 
0026 #endif