File indexing completed on 2024-04-06 12:19:54
0001 #ifndef GCTTESTSINGLEEVENT_H_
0002 #define GCTTESTSINGLEEVENT_H_
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #include <string>
0016 #include <vector>
0017 #include <stdint.h>
0018
0019 class L1CaloRegion;
0020
0021 class gctTestSingleEvent {
0022 public:
0023
0024
0025
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