LDMX Software
EcalRecProducer.cxx
Go to the documentation of this file.
1
8
10#include "Ecal/EcalReconConditions.h"
11#include "Ecal/Event/EcalHit.h"
14
15namespace ecal {
16
17EcalRecProducer::EcalRecProducer(const std::string& name,
18 framework::Process& process)
19 : Producer(name, process) {}
20
22 // collection names
23 digi_coll_name_ = ps.get<std::string>("digi_coll_name");
24 digi_pass_name_ = ps.get<std::string>("digi_pass_name");
25 sim_hit_coll_name_ = ps.get<std::string>("sim_hit_coll_name");
26 sim_hit_pass_name_ = ps.get<std::string>("sim_hit_pass_name");
27 rec_hit_coll_name_ = ps.get<std::string>("rec_hit_coll_name");
28
29 layer_weights_ = ps.get<std::vector<double>>("layer_weights");
31 ps.get<double>("second_order_energy_correction");
32
33 mip_si_energy_ = ps.get<double>("mip_si_energy");
34 clock_cycle_ = ps.get<double>("clock_cycle");
35 charge_per_mip_ = ps.get<double>("charge_per_mip");
36}
37
39 // Get the Ecal Geometry
40 const auto& geometry = getCondition<ldmx::EcalGeometry>(
41 ldmx::EcalGeometry::CONDITIONS_OBJECT_NAME);
42
43 // Safety check: ensure layer_weights_ covers all geometry layers.
44 // A mismatch here typically means an outdated geometry configuration
45 // (e.g. v14) is being used with layer weights for a different geometry
46 // version (e.g. v15).
47 if (geometry.getNumLayers() > static_cast<int>(layer_weights_.size())) {
48 EXCEPTION_RAISE(
49 "InvalidConfig",
50 "The number of layers in the Ecal geometry (" +
51 std::to_string(geometry.getNumLayers()) +
52 ") exceeds the number of configured layer_weights (" +
53 std::to_string(layer_weights_.size()) +
54 "). This is likely caused by a mismatch between the geometry "
55 "version and the reconstruction configuration. Please ensure "
56 "that the correct geometry is being used.");
57 }
58
59 // Get the reconstruction parameters
60 EcalReconConditions the_conditions(
63
64 std::vector<ldmx::EcalHit> ecal_rec_hits;
65 auto ecal_digis = event.getObject<ldmx::HgcrocDigiCollection>(
67 const int i_soi = ecal_digis.getSampleOfInterestIndex();
68 // loop through digis
69 for (auto digi : ecal_digis) {
70 // ID from first digi sample
71 // assuming rest of samples have same ID
72 ldmx::EcalID id(digi.id());
73
74 // ID to real space position
75 auto [x_, y_, z_] = geometry.getPosition(id);
76
77 // the TOT measurement is in the sample where the pulse fell back below
78 // threshold, which is the SOI only for in-time hits (iss #1944)
79 int i_tot = digi.totSampleIndex();
80
81 // get the estimated charge deposited from digi samples
82 double charge(0.);
83 // TOA with respect to the 25ns clock window that measured it
84 double hit_time(0.);
85
86 if (i_tot >= 0) {
87 // TOT - number of clock ticks that pulse was over threshold
88 // this is related to the amplitude of the pulse approximately through a
89 // linear drain rate the amplitude of the pulse is related to the energy
90 // deposited
91 auto tot_sample = digi.at(i_tot);
92
93 // convert the time over threshold into a total energy deposited in the
94 // silicon
95 // (time over threshold [ns] - pedestal) * gain
96 charge = (tot_sample.tot() - the_conditions.totPedestal(id)) *
97 the_conditions.totGain(id);
98
99 // TOA is measured from the start of its own sample
100 hit_time = (i_tot - i_soi) * clock_cycle_ +
101 tot_sample.toa() * (clock_cycle_ / 1024);
102
103 ldmx_log(trace) << "Recon { TOA: " << hit_time << " ns } ";
104 ldmx_log(trace) << "TOT Mode (sample " << i_tot << ") -> "
105 << tot_sample.tot() << "TDC -> " << charge << " fC";
106 } else {
107 hit_time = digi.soi().toa() * (clock_cycle_ / 1024); // ns
108 ldmx_log(trace) << "Recon { TOA: " << hit_time << " ns } ";
109
110 // ADC mode of readout
111 // ADC - voltage measurement at a specific time of the pulse
112 // Pulse Shape:
113 // p[0]/(1.0+exp(p[1](t-p[2]+p[3]-p[4])))/(1.0+exp(p[5]*(t-p[6]+p[3]-p[4])))
114 // p[0] = amplitude to be fit (TBD)
115 // p[1] = -0.345 shape parameter - rate of up slope
116 // p[2] = 70.6547 shape parameter - time of up slope relative to shape
117 // fit p[3] = 77.732 shape parameter - time of peak relative to shape fit
118 // p[4] = peak time to be fit (TBD)
119 // p[5] = 0.140068 shape parameter - rate of down slope
120 // p[6] = 87.7649 shape paramter - time of down slope relative to shape
121 // fit
122 // These measurements can be used to fit the pulse shape if TOT is not
123 // available. For now, we simply take the measurement of the SOI as the
124 // peak amplitude.
125
126 charge = (digi.soi().adcT() - the_conditions.adcPedestal(id)) *
127 the_conditions.adcGain(id);
128
129 ldmx_log(trace) << "ADC Mode -> " << charge << " fC";
130 }
131
144 if (charge <= 0) continue;
145
146 double num_mips_equivalent = charge / charge_per_mip_;
147 double energy_deposited_in_si = num_mips_equivalent * mip_si_energy_;
148
149 ldmx_log(trace) << " -> " << num_mips_equivalent << " equiv MIPs -> "
150 << energy_deposited_in_si << " MeV";
151
152 // incorporate layer_ weights
153 double reconstructed_energy =
154 (num_mips_equivalent *
156 id.layer()) // energy lost in non-sensitive layers
157 + energy_deposited_in_si // energy deposited in Si itself
158 ) *
160
161 // copy over information to rec hit structure in new collection
162 ldmx::EcalHit rec_hit;
163 rec_hit.setID(id.raw());
164 rec_hit.setXPos(x_);
165 rec_hit.setYPos(y_);
166 rec_hit.setZPos(z_);
167 rec_hit.setAmplitude(energy_deposited_in_si);
168 rec_hit.setEnergy(reconstructed_energy);
169 rec_hit.setTime(hit_time);
170
171 ecal_rec_hits.push_back(rec_hit);
172 }
173
175 // ecal sim hits_ exist ==> label which hits_ are real and which are pure
176 // noise
177 auto ecal_sim_hits{event.getCollection<ldmx::SimCalorimeterHit>(
179 std::set<int> real_hits;
180 for (auto const& sim_hit : ecal_sim_hits) real_hits.insert(sim_hit.getID());
181 for (auto& hit : ecal_rec_hits)
182 hit.setNoise(real_hits.find(hit.getID()) == real_hits.end());
183 }
184
185 // add collection to event bus
186 event.add(rec_hit_coll_name_, ecal_rec_hits);
187}
188
189} // namespace ecal
190
Class that translates raw positions of ECal module hits into cells in a hexagonal readout.
Class that performs basic ECal digitization.
#define DECLARE_PRODUCER(CLASS)
Macro which allows the framework to construct a producer given its name during configuration.
Class that represents a digitized hit in a calorimeter cell readout by an HGCROC.
Class which stores simulated calorimeter hit information.
Performs basic ECal reconstruction.
double mip_si_energy_
Energy [MeV] deposited by a MIP in Si 0.5mm thick.
std::string sim_hit_coll_name_
simhit collection name
std::vector< double > layer_weights_
Layer Weights to use for this reconstruction.
double second_order_energy_correction_
Second Order Energy Correction to use for this reconstruction.
double charge_per_mip_
Number of electrons generated by average MIP in Si 0.5mm thick.
std::string rec_hit_coll_name_
output hit collection name
EcalRecProducer(const std::string &name, framework::Process &process)
Constructor.
virtual void produce(framework::Event &event)
Produce EcalHits and put them into the event bus using the EcalDigis as input.
std::string digi_pass_name_
Digi Pass Name to use as input.
virtual void configure(framework::config::Parameters &)
Grabs configure parameters from the python config file.
double clock_cycle_
Length of clock cycle [ns].
std::string sim_hit_pass_name_
simhit pass name
std::string digi_coll_name_
Digi Collection Name to use as input.
Class to wrap around an double table of conditions.
double adcPedestal(const ldmx::EcalID &id) const
get the ADC pedestal
double adcGain(const ldmx::EcalID &id) const
get the ADC gain
double totPedestal(const ldmx::EcalID &id) const
get the TOT pedestal
static const std::string CONDITIONS_NAME
the name of the EcalReconConditions table (must match python registration name)
double totGain(const ldmx::EcalID &id) const
get the TOT gain
const T & getCondition(const std::string &condition_name)
Access a conditions object for the current event.
Implements an event buffer system for storing event data.
Definition Event.h:42
bool exists(const std::string &name, const std::string &passName, bool unique=true) const
Check for the existence of an object or collection with the given name and pass name in the event.
Definition Event.cxx:105
Class which represents the process under execution.
Definition Process.h:37
Class encapsulating parameters for configuring a processor.
Definition Parameters.h:29
const T & get(const std::string &name) const
Retrieve the parameter of the given name.
Definition Parameters.h:78
void setYPos(float ypos)
Set the Y position of the hit [mm].
void setID(int id)
Set the detector ID.
void setZPos(float zpos)
Set the Z position of the hit [mm].
void setXPos(float xpos)
Set the X position of the hit [mm].
void setTime(float time)
Set the time of the hit [ns].
void setAmplitude(float amplitude)
Set the amplitude of the hit, which is proportional to the signal in the calorimeter cell without sam...
void setEnergy(float energy)
Set the calorimetric energy of the hit, corrected for sampling factors [MeV].
Stores reconstructed hit information from the ECAL.
Definition EcalHit.h:19
Extension of DetectorID providing access to ECal layers and cell numbers in a hex grid.
Definition EcalID.h:20
Represents a collection of the digi hits readout by an HGCROC.
unsigned int getSampleOfInterestIndex() const
Get index of sample of interest.
Stores simulated calorimeter hit information.