00001
00002
00003 #ifndef XAODTRIGL1CALO_VERSIONS_CMXJETHITSAUXCONTAINER_V1_H
00004 #define XAODTRIGL1CALO_VERSIONS_CMXJETHITSAUXCONTAINER_V1_H
00005
00006
00007 #include <vector>
00008
00009 #include <stdint.h>
00010
00011
00012 #include "xAODCore/AuxContainerBase.h"
00013
00014 namespace xAOD{
00015
00022
00023 class CMXJetHitsAuxContainer_v1 : public AuxContainerBase {
00024 public:
00026 CMXJetHitsAuxContainer_v1();
00027
00028 private:
00029 std::vector<uint8_t> crate;
00030 std::vector<uint8_t> sourceComponent;
00031 std::vector<uint8_t> peak;
00032 std::vector<std::vector<uint32_t> > hitsVec0;
00033 std::vector<std::vector<uint32_t> > hitsVec1;
00034 std::vector<std::vector<uint32_t> > errorVec0;
00035 std::vector<std::vector<uint32_t> > errorVec1;
00036
00037 };
00038 }
00039
00040 SG_BASE( xAOD::CMXJetHitsAuxContainer_v1 , xAOD::AuxContainerBase );
00041
00042 #endif
00043