Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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