Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MicromegasRawHitContainerv1.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file MicromegasRawHitContainerv1.h
1 #ifndef FUN4ALLRAW_MICROMEGASHITRAWCONTAINERV1_H
2 #define FUN4ALLRAW_MICROMEGASHITRAWCONTAINERV1_H
3 
5 
6 class MicromegasRawHit;
7 class TClonesArray;
8 
10 {
11  public:
14 
16  void Reset() override;
17 
21  void identify(std::ostream &os = std::cout) const override;
22 
24  int isValid() const override;
25 
26  MicromegasRawHit *AddHit() override;
28  unsigned int get_nhits() override;
29  MicromegasRawHit *get_hit(unsigned int) override;
30 
31  private:
32  TClonesArray *MicromegasRawHitsTCArray = nullptr;
33 
34  ClassDefOverride(MicromegasRawHitContainerv1,1)
35 };
36 
37 #endif