29 auto [recoil_track_id, recoil_electron] = analysis::getRecoil(particle_map);
32 const std::vector<ldmx::SimCalorimeterHit> ecal_sim_hits =
37 const std::vector<ldmx::SimCalorimeterHit> hcal_sim_hits =
42 const std::vector<ldmx::SimTrackerHit> recoil_sim_hits =
48 bool has_ecal_hit =
false;
51 for (
int i_contrib = 0; i_contrib < sim_hit.getNumberOfContribs();
55 if (contrib.
track_id_ == recoil_track_id) {
57 ecal_hit_id = sim_hit.getID();
64 bool has_hcal_hit =
false;
67 for (
int i_contrib = 0; i_contrib < sim_hit.getNumberOfContribs();
71 if (contrib.
track_id_ == recoil_track_id) {
73 hcal_hit_id = sim_hit.getID();
80 std::set<int> layers_hit;
82 if (sim_hit.getTrackID() == recoil_track_id) {
84 if ((sim_hit.getTime() < 0.8) && (sim_hit.getMomentum()[2] > 0)) {
85 layers_hit.insert(sim_hit.getLayerID());
89 bool has_min_tracker_hits =
false;
91 has_min_tracker_hits =
true;
95 bool has_min_energy =
false;
96 if (recoil_electron->getEnergy() >=
min_p_mag_) {
97 has_min_energy =
true;
101 bool is_fiducial = has_min_energy && has_min_tracker_hits && has_ecal_hit;
103 int mask_tracker_e = has_min_energy << 0;
104 int mask_tracker_hits = has_min_tracker_hits << 1;
105 int mask_ecal = has_ecal_hit << 2;
106 int mask_hcal = has_hcal_hit << 3;
108 mask_tracker_e | mask_tracker_hits | mask_ecal | mask_hcal;
112 flag.
setAlgoVar(0, recoil_electron->getEnergy());
#define DECLARE_PRODUCER(CLASS)
Macro which allows the framework to construct a producer given its name during configuration.
Class that flags events with a fiducial recoil electron.
void setStorageHint(framework::StorageControl::Hint hint)
Mark the current event as having the given storage control hint from this module_.
Implements an event buffer system for storing event data.
Class encapsulating parameters for configuring a processor.
const T & get(const std::string &name) const
Retrieve the parameter of the given name.
Holds truth-level fiduciality flags on the signal recoil electron.
void setHasHcalHit(bool has_hcal_hit)
Set hcal hit flag.
void setAlgoVar(int element, double value)
Set an algorithm variable.
void setHasMinTrackerHits(bool has_min_tracker_hits)
Set tracker hit flag.
void setIsFiducial(bool is_fiducial)
Set fiduciality flag.
void setFiducialFlag(int fiducial_flag, int nvar)
Set fiduciality bit mask.
void setHasEcalHit(bool has_ecal_hit)
Set ecal hit flag.
void setHasMinEnergy(bool has_min_energy)
Set recoil min.
Stores simulated calorimeter hit information.
Class representing a simulated particle.
Represents a simulated tracker hit in the simulation.
Flags events with a fiducial recoil electron, based on truth information.
bool inverse_skim_
Inverse option for skimming.
std::string ecal_collection_
The name of the ecal collection.
std::string hcal_collection_
The name of the hcal collection.
std::string output_collection_
The name of the output collection.
std::string recoil_collection_
The name of the recoil tracker collection.
int min_tracker_hits_
Minimum number of recoil electron hits in the recoil tracker.
void configure(framework::config::Parameters ¶meters) override
Configure the processor using the given user specified parameters.
double min_p_mag_
Minimum recoil electron momentum at production.
void produce(framework::Event &event) override
Create a FiducialFlag object to contain info about whether the recoil electron satisfies certain fidu...
std::string input_pass_name_
The pass name of the input collections.
constexpr StorageControl::Hint HINT_SHOULD_DROP
storage control hint alias for backwards compatibility
constexpr StorageControl::Hint HINT_SHOULD_KEEP
storage control hint alias for backwards compatibility
Information about a contribution to the hit in the associated cell.
int track_id_
track ID of this contributor