LDMX Software
EcalHit.h
1#ifndef ECAL_EVENT_ECALHIT_H_
2#define ECAL_EVENT_ECALHIT_H_
3
4//----------//
5// LDMX //
6//----------//
8
9namespace ldmx {
10
20 public:
22 EcalHit() = default;
23
25 virtual ~EcalHit() {}
26
28 void clear();
29
31 friend std::ostream &operator<<(std::ostream &o, const EcalHit &d);
32
33 private:
36};
37} // namespace ldmx
38
39#endif /* EVENT_ECALHIT_H_ */
Class that represents a reconstructed hit in a calorimeter cell within the detector.
Represents a reconstructed hit in a calorimeter cell within the detector.
Stores reconstructed hit information from the ECAL.
Definition EcalHit.h:19
void clear()
Clear the data in the object.
Definition EcalHit.cxx:9
ClassDef(EcalHit, 4)
The ROOT class definition.
virtual ~EcalHit()
Destructor.
Definition EcalHit.h:25
friend std::ostream & operator<<(std::ostream &o, const EcalHit &d)
Print a text representation of this object.
Definition EcalHit.cxx:11
EcalHit()=default
Constructor.