Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:21

0001 #ifndef CaloSimAlgos_CaloVHitCorrection_h
0002 #define CaloSimAlgos_CaloVHitCorrection_h
0003 
0004 #include "SimDataFormats/CaloHit/interface/PCaloHit.h"
0005 
0006 namespace CLHEP {
0007   class HepRandomEngine;
0008 }
0009 
0010 class CaloVHitCorrection {
0011 public:
0012   virtual ~CaloVHitCorrection() = default;
0013   virtual double delay(const PCaloHit &hit, CLHEP::HepRandomEngine *) const = 0;
0014 };
0015 
0016 #endif