Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Gl1RawHit.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file Gl1RawHit.h
1 #ifndef FUN4ALLRAW_GL1RAWTHIT_H
2 #define FUN4ALLRAW_GL1RAWTHIT_H
3 
4 #include <phool/PHObject.h>
5 
6 #include <limits>
7 
8 
9 class Gl1RawHit: public PHObject
10  {
11 
12 
13 public:
14  Gl1RawHit() = default;
15  virtual ~Gl1RawHit() = default;
16 
17  virtual uint64_t get_bco() const {return std::numeric_limits<uint64_t>::max();}
18  virtual void set_bco(const uint64_t) {return;}
19 
20 private:
21  ClassDefOverride(Gl1RawHit,1)
22 };
23 
24 #endif