File indexing completed on 2025-08-06 08:18:09
0001 #ifndef INTT_EVENT_INFO_v1_H
0002 #define INTT_EVENT_INFO_v1_H
0003
0004 #include "InttEventInfo.h"
0005 #include "TrkrDefs.h"
0006
0007 #include <cstddef>
0008 #include <cstdint>
0009
0010 #include <iostream>
0011 #include <map>
0012 #include <string>
0013
0014 #include <phool/PHObject.h>
0015
0016 class InttEventInfov1 : public InttEventInfo
0017 {
0018 public:
0019 InttEventInfov1();
0020 ~InttEventInfov1() override;
0021
0022 void identify(std::ostream &os = std::cout) const override;
0023 void Reset() override;
0024
0025 uint64_t get_bco_full() const override;
0026 void set_bco_full(uint64_t const &) override;
0027
0028 protected:
0029 uint64_t bco_full;
0030
0031 private:
0032 ClassDefOverride(InttEventInfov1, 1)
0033 };
0034
0035 #endif