Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:54

0001 #ifndef GCTTESTSINGLEEVENT_H_
0002 #define GCTTESTSINGLEEVENT_H_
0003 
0004 /*!
0005  * \class gctTestSingleEvent
0006  * \brief Helper for hardware/emulator comparison tests using single events
0007  * 
0008  * Read in the array of region energies from a file
0009  *
0010  * \author Greg Heath
0011  * \date February 2010
0012  *
0013  */
0014 
0015 #include <string>
0016 #include <vector>
0017 #include <stdint.h>
0018 
0019 class L1CaloRegion;
0020 
0021 class gctTestSingleEvent {
0022 public:
0023   // structs and typedefs
0024 
0025   // Constructor and destructor
0026   gctTestSingleEvent();
0027   ~gctTestSingleEvent();
0028 
0029   std::vector<L1CaloRegion> loadEvent(const std::string &fileName, const int16_t bx);
0030 
0031 private:
0032 };
0033 
0034 #endif /*GCTTEST_H_*/