Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef NeutronReader_h
0002 #define NeutronReader_h
0003 /**
0004  * interface to methods which return a set of SimHits in a chamber
0005  \author Rick Wilkinson
0006  */
0007 
0008 #include "SimDataFormats/TrackingHit/interface/PSimHitContainer.h"
0009 #include <vector>
0010 
0011 class NeutronReader {
0012 public:
0013   NeutronReader(){};
0014   virtual ~NeutronReader(){};
0015 
0016   virtual void readNextEvent(int chamberType, edm::PSimHitContainer& result) = 0;
0017 };
0018 
0019 #endif