Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:18:09

0001 #ifndef INTT_EVENT_INFO_H
0002 #define INTT_EVENT_INFO_H
0003 
0004 #include "TrkrDefs.h"
0005 
0006 #include <cstddef>
0007 #include <cstdint>
0008 
0009 #include <iostream>
0010 #include <map>
0011 #include <string>
0012 
0013 #include <phool/PHObject.h>
0014 
0015 class InttEventInfo : public PHObject
0016 {
0017  public:
0018   InttEventInfo() = default;
0019   virtual ~InttEventInfo() = default;
0020 
0021   virtual void identify(std::ostream &os = std::cout) const override;
0022   virtual void Reset() override;
0023 
0024   virtual uint64_t get_bco_full() const;
0025   virtual void set_bco_full(uint64_t const &);
0026 
0027  protected:
0028   ClassDefOverride(InttEventInfo, 1);
0029 };
0030 
0031 #endif  // INTT_EVENT_INFO_H