LDMX Software
EventConstants.cxx
2
3namespace ldmx {
4
5/*
6 * Default Collection and object names in the event tree.
7 */
8const std::string EventConstants::ECAL_SIM_HITS = "EcalSimHits";
9const std::string EventConstants::EVENT_HEADER = "EventHeader";
10const std::string EventConstants::HCAL_SIM_HITS = "HcalSimHits";
11const std::string EventConstants::RECOIL_SIM_HITS = "RecoilSimHits";
12const std::string EventConstants::SIM_PARTICLES = "SimParticles";
13const std::string EventConstants::TAGGER_SIM_HITS = "TaggerSimHits";
14const std::string EventConstants::TARGET_SIM_HITS = "TargetSimHits";
15const std::string EventConstants::TRIGGER_PAD_SIM_HITS = "TriggerPadSimHits";
16const std::string EventConstants::TRIGGER_RESULT = "TriggerResult";
17const std::string EventConstants::CLUSTER_ALGO_RESULT = "ClusterAlgoResult";
18
19/*
20 * Type names.
21 */
22const std::string EventConstants::ECAL_HIT = "ldmx::EcalHit";
23const std::string EventConstants::ECAL_CLUSTER = "ldmx::EcalCluster";
24const std::string EventConstants::HCAL_HIT = "ldmx::HcalHit";
25const std::string EventConstants::SIM_PARTICLE = "ldmx::SimParticle";
26const std::string EventConstants::SIM_CALORIMETER_HIT =
27 "ldmx::SimCalorimeterHit";
28const std::string EventConstants::SIM_TRACKER_HIT = "ldmx::SimTrackerHit";
29const std::string EventConstants::PN_WEIGHT = "simcore::pnWeight";
30
31} // namespace ldmx
Class providing string constants for the event model.