LDMX Software
TrigCaloHit.cxx
1#include "Trigger/Event/TrigCaloHit.h"
2
4
5namespace trigger {
6TrigCaloHit::TrigCaloHit(float position_x, float position_y, float position_z,
7 float energy)
8 : position_x_(position_x),
9 position_y_(position_y),
10 position_z_(position_z),
11 energy_(energy) {
12 layer_ = 0;
13 strip_ = 0;
14 module_section_ = 0;
15}
16
17} // namespace trigger
Class for calo hits used in trigger computations.
Definition TrigCaloHit.h:13