LCIO  "2.7.4"
 All Classes Namespaces Functions Variables Typedefs Friends Pages
RawCalorimeterHit.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_RAWCALORIMETERHIT_H
8 #define EVENT_RAWCALORIMETERHIT_H 1
9 
10 #include "EVENT/LCObject.h"
11 
12 #include <vector>
13 
14 namespace EVENT {
15 
16 
19 typedef std::vector<RawCalorimeterHit*> RawCalorimeterHitVec ;
31 class RawCalorimeterHit : public LCObject {
32 
33 public:
35  virtual ~RawCalorimeterHit() { /* nop */; }
36 
37 
40 
43  virtual int getCellID0() const = 0;
44 
48  virtual int getCellID1() const = 0;
49 
52  virtual int getAmplitude() const = 0;
53 
57  virtual int getTimeStamp() const = 0;
58 }; // class
59 } // namespace EVENT
60 #endif /* ifndef EVENT_RAWCALORIMETERHIT_H */
The generic object that is held in an LCCollection.
Definition: LCObject.h:30
RawCalorimeterHit lcobject_type
Useful typedef for template programming with LCIO.
Definition: RawCalorimeterHit.h:39
std::vector< RawCalorimeterHit * > RawCalorimeterHitVec
Vector of (pointers to) RawCalorimeterHits.
Definition: RawCalorimeterHit.h:17
virtual int getCellID1() const =0
Returns the second detector specific (geometrical) cell id.
virtual int getAmplitude() const =0
Returns the amplitude of the hit in ADC counts.
virtual int getCellID0() const =0
Returns the detector specific (geometrical) cell id.
virtual int getTimeStamp() const =0
Returns a time stamp for the hit.
The generic calorimeter hit for real data (or simulation thereof).
Definition: RawCalorimeterHit.h:31
virtual ~RawCalorimeterHit()
Destructor.
Definition: RawCalorimeterHit.h:35