LCIO  "2.7.4"
 All Classes Namespaces Functions Variables Typedefs Friends Pages
TPCHit.h
1 // -*- C++ -*-
2 // AID-GENERATED
3 // =========================================================================
4 // This class was generated by AID - Abstract Interface Definition
5 // DO NOT MODIFY, but use the org.freehep.aid.Aid utility to regenerate it.
6 // =========================================================================
7 #ifndef EVENT_TPCHIT_H
8 #define EVENT_TPCHIT_H 1
9 
10 #include "EVENT/LCObject.h"
11 
12 namespace EVENT {
13 
22 class TPCHit : public LCObject {
23 
24 public:
26  virtual ~TPCHit() { /* nop */; }
27 
28 
31 
34  virtual int getCellID() const = 0;
35 
38  virtual float getTime() const = 0;
39 
42  virtual float getCharge() const = 0;
43 
46  virtual int getQuality() const = 0;
47 
52  virtual int getNRawDataWords() const = 0;
53 
58  virtual int getRawDataWord(int i) const = 0;
59 }; // class
60 } // namespace EVENT
61 #endif /* ifndef EVENT_TPCHIT_H */
The generic object that is held in an LCCollection.
Definition: LCObject.h:30
virtual int getNRawDataWords() const =0
Return the number of raw data (32-bit) words stored for the hit.
virtual int getRawDataWord(int i) const =0
Return the raw data (32-bit) word at i.
virtual float getCharge() const =0
Returns the integrated charge of the hit.
virtual int getQuality() const =0
Returns a quality flag for the hit.
virtual float getTime() const =0
Returns the time of the hit.
Deprecated.
Definition: TPCHit.h:22
TPCHit lcobject_type
Useful typedef for template programming with LCIO.
Definition: TPCHit.h:30
virtual int getCellID() const =0
Returns the detector specific cell id.
virtual ~TPCHit()
Destructor.
Definition: TPCHit.h:26