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