Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:24

0001 #ifndef SimG4Core_GFlash_GFlash_H
0002 #define SimG4Core_GFlash_GFlash_H
0003 // Joanna Weng 08.2005
0004 // modifed by Soon Yung Jun, Dongwook Jang
0005 
0006 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0007 #include "SimG4Core/Physics/interface/PhysicsList.h"
0008 
0009 class GflashHistogram;
0010 
0011 class GFlash : public PhysicsList {
0012 public:
0013   GFlash(const edm::ParameterSet &p);
0014   ~GFlash() override;
0015 
0016 private:
0017   GflashHistogram *theHisto;
0018   edm::ParameterSet thePar;
0019 };
0020 
0021 #endif