LDMX Software
Public Member Functions | Private Member Functions | Private Attributes | List of all members
recon::BeamElectronLocator Class Reference

Electron counting processor. More...

#include <BeamElectronLocator.h>

Public Member Functions

 BeamElectronLocator (const std::string &name, framework::Process &process)
 Constructor.
 
virtual ~BeamElectronLocator ()
 Destructor.
 
void configure (framework::config::Parameters &parameters) override
 Configure the processor using the given user specified parameters.
 
void onProcessStart () override
 Prints the configuration to log in debug mode.
 
void produce (framework::Event &event) override
 Process the event and put new data products into it.
 
- Public Member Functions inherited from framework::Producer
 Producer (const std::string &name, Process &process)
 Class constructor.
 
virtual void beforeNewRun (ldmx::RunHeader &header)
 Handle allowing producers to modify run headers before the run begins.
 
- Public Member Functions inherited from framework::EventProcessor
 EventProcessor (const std::string &name, Process &process)
 Class constructor.
 
virtual ~EventProcessor ()
 Class destructor.
 
virtual void onNewRun (const ldmx::RunHeader &runHeader)
 Callback for the EventProcessor to take any necessary action when the run being processed changes.
 
virtual void onFileOpen (EventFile &eventFile)
 Callback for the EventProcessor to take any necessary action when a new event input ROOT file is opened.
 
virtual void onFileClose (EventFile &eventFile)
 Callback for the EventProcessor to take any necessary action when a event input ROOT file is closed.
 
virtual void onProcessEnd ()
 Callback for the EventProcessor to take any necessary action when the processing of events finishes, such as calculating job-summary quantities.
 
template<class T >
const T & getCondition (const std::string &condition_name)
 Access a conditions object for the current event.
 
TDirectory * getHistoDirectory ()
 Access/create a directory in the histogram file for this event processor to create histograms and analysis tuples.
 
void setStorageHint (framework::StorageControl::Hint hint)
 Mark the current event as having the given storage control hint from this module.
 
void setStorageHint (framework::StorageControl::Hint hint, const std::string &purposeString)
 Mark the current event as having the given storage control hint from this module and the given purpose string.
 
int getLogFrequency () const
 Get the current logging frequency from the process.
 
int getRunNumber () const
 Get the run number from the process.
 
std::string getName () const
 Get the processor name.
 
void createHistograms (const std::vector< framework::config::Parameters > &histos)
 Internal function which is used to create histograms passed from the python configuration @parma histos vector of Parameters that configure histograms to create.
 

Private Member Functions

int bin (float coordinate, double binWidth, double min, double max)
 Bins coordinates according to some given granularity (passed as argument).
 

Private Attributes

std::string inputColl_
 The name of the input collection used for counting electrons.
 
std::string inputPassName_
 The pass name of the input collection used for counting electrons.
 
std::string outputColl_
 The name of the output collection used to save some electron counting variables.
 
double minXmm_
 The min value measured by the system (edge) in X, in mm.
 
double maxXmm_
 The max value measured by the system (edge) in X, in mm.
 
double minYmm_
 The min value measured by the system (edge) in Y, in mm.
 
double maxYmm_
 The max value measured by the system (edge) in Y, in mm.
 
double granularityXmm_
 The granularity of the detector (e.g.
 
double granularityYmm_
 The granularity of the detector (e.g.
 
double tolerance_
 The tolerance within which simhits are considered to belong to the same electron.
 
bool verbose_ {false}
 Indicate verbose printout to log according to log level.
 

Additional Inherited Members

- Static Public Member Functions inherited from framework::EventProcessor
static void declare (const std::string &classname, int classtype, EventProcessorMaker *)
 Internal function which is part of the PluginFactory machinery.
 
- Static Public Attributes inherited from framework::Producer
static const int CLASSTYPE {1}
 Constant used to track EventProcessor types by the PluginFactory.
 
- Protected Member Functions inherited from framework::EventProcessor
void abortEvent ()
 Abort the event immediately.
 
- Protected Attributes inherited from framework::EventProcessor
HistogramHelper histograms_
 Interface class for making and filling histograms.
 
NtupleManagerntuple_ {NtupleManager::getInstance()}
 Manager for any ntuples.
 
logging::logger theLog_
 The logger for this EventProcessor.
 

Detailed Description

Electron counting processor.

This processor uses calo simhits in e.g. the target to get truth info about beam electrons. The hits associated with beam electrons can already be isolated by the truth hit collection producer. However, the simhits have approximately infinite resolution. This processor's raison d'ĂȘtre is to run some sort of grouping, to ensure we have at most one reconstructed truth information object per electron.

Definition at line 26 of file BeamElectronLocator.h.

Constructor & Destructor Documentation

◆ BeamElectronLocator()

recon::BeamElectronLocator::BeamElectronLocator ( const std::string &  name,
framework::Process process 
)

Constructor.

Parameters
nameName for this instance of the class.
processThe Process class associated with EventProcessor, provided by the framework.

Definition at line 5 of file BeamElectronLocator.cxx.

7 : framework::Producer(name, process) {}
Base class for a module which produces a data product.

◆ ~BeamElectronLocator()

recon::BeamElectronLocator::~BeamElectronLocator ( )
virtual

Destructor.

Definition at line 9 of file BeamElectronLocator.cxx.

9{}

Member Function Documentation

◆ bin()

int recon::BeamElectronLocator::bin ( float  coordinate,
double  binWidth,
double  min,
double  max 
)
private

Bins coordinates according to some given granularity (passed as argument).

Returns the lower bin edge. -1 for underflow (coordinate < min_in_mm); with a system of N bins, returns n = N if coordinate > max_in_mm.

TODO also implement a function that returns the grid of non-empty hit coordinates, which accounts for that we don't know the multiplicity at a location

Definition at line 103 of file BeamElectronLocator.cxx.

104 {
105 int n = 0;
106 while (coordinate > min + n * binWidth) {
107 n++;
108 if (min + n * binWidth > max) {
109 // don't go out of bounds, but, still indicate overflow by increasing n
110 // before breaking
111 break;
112 }
113 }
114 // the n we have now is the first bin beyond our coordinate.
115 // better aligned with conventions to return the lower edge.
116 return n - 1;
117}

Referenced by produce().

◆ configure()

void recon::BeamElectronLocator::configure ( framework::config::Parameters parameters)
overridevirtual

Configure the processor using the given user specified parameters.

The user specified parameters that are available are defined in the python configuration class. Look at the beamElecronLocator.py in Recon/python for the python structure.

Parameters
parametersSet of parameters used to configure this processor.

Reimplemented from framework::EventProcessor.

Definition at line 11 of file BeamElectronLocator.cxx.

11 {
12 inputColl_ = parameters.getParameter<std::string>("input_collection");
13 inputPassName_ = parameters.getParameter<std::string>("input_pass_name");
14 outputColl_ = parameters.getParameter<std::string>("output_collection");
15 granularityXmm_ = parameters.getParameter<double>("granularity_X_mm");
16 granularityYmm_ = parameters.getParameter<double>("granularity_Y_mm");
17 tolerance_ = parameters.getParameter<double>("min_granularity_mm");
18 minXmm_ = parameters.getParameter<double>("min_X_mm");
19 maxXmm_ = parameters.getParameter<double>("max_X_mm");
20 minYmm_ = parameters.getParameter<double>("min_Y_mm");
21 maxYmm_ = parameters.getParameter<double>("max_Y_mm");
22 verbose_ = parameters.getParameter<bool>("verbose");
23}
T getParameter(const std::string &name) const
Retrieve the parameter of the given name.
Definition Parameters.h:89
double granularityYmm_
The granularity of the detector (e.g.
double minXmm_
The min value measured by the system (edge) in X, in mm.
double tolerance_
The tolerance within which simhits are considered to belong to the same electron.
std::string outputColl_
The name of the output collection used to save some electron counting variables.
std::string inputPassName_
The pass name of the input collection used for counting electrons.
bool verbose_
Indicate verbose printout to log according to log level.
double minYmm_
The min value measured by the system (edge) in Y, in mm.
std::string inputColl_
The name of the input collection used for counting electrons.
double maxYmm_
The max value measured by the system (edge) in Y, in mm.
double granularityXmm_
The granularity of the detector (e.g.
double maxXmm_
The max value measured by the system (edge) in X, in mm.

References framework::config::Parameters::getParameter(), granularityXmm_, granularityYmm_, inputColl_, inputPassName_, maxXmm_, maxYmm_, minXmm_, minYmm_, outputColl_, tolerance_, and verbose_.

◆ onProcessStart()

void recon::BeamElectronLocator::onProcessStart ( )
overridevirtual

Prints the configuration to log in debug mode.

Reimplemented from framework::EventProcessor.

Definition at line 24 of file BeamElectronLocator.cxx.

24 {
25 ldmx_log(debug) << "BeamElectronLocator is using parameters: "
26 << " \n\tinput_collection = " << inputColl_
27 << " \n\tinput_pass_name = " << inputPassName_
28 << " \n\toutput_collection = " << outputColl_
29 << " \n\tgranularity_X_mm = " << granularityXmm_
30 << " \n\tgranularity_Y_mm = " << granularityYmm_
31 << " \n\tmin_granularity_mm = " << tolerance_
32 << " \n\tmin_X_mm = " << minXmm_
33 << " \n\tmax_X_mm = " << maxXmm_
34 << " \n\tmin_Y_mm = " << minYmm_
35 << " \n\tmax_Y_mm = " << maxYmm_
36 << " \n\tverbose = " << verbose_;
37}

References granularityXmm_, granularityYmm_, inputColl_, inputPassName_, maxXmm_, maxYmm_, minXmm_, minYmm_, outputColl_, tolerance_, and verbose_.

◆ produce()

void recon::BeamElectronLocator::produce ( framework::Event event)
overridevirtual

Process the event and put new data products into it.

Parameters
eventThe event to process.

Implements framework::Producer.

Definition at line 39 of file BeamElectronLocator.cxx.

39 {
40 // Check if the input collection exists. If not,
41 // don't bother processing the event.
42 if (!event.exists(inputColl_, inputPassName_)) {
43 ldmx_log(fatal) << "Attemping to use non-existing input collection "
44 << inputColl_ << "_" << inputPassName_
45 << " to locate electrons! Exiting.";
46 return;
47 }
48
49 std::vector<ldmx::BeamElectronTruth> beamElectronInfo;
50 const auto simHits{
52
53 if (verbose_) {
54 ldmx_log(info) << "Looping through simhits in event "
55 << event.getEventNumber() << ".";
56 }
57
58 for (const auto &simHit : simHits) {
59 // check if we already caught this position, else, add it
60 bool isMatched = false;
61 std::vector<float> pos = simHit.getPosition();
62 for (auto foundElectrons : beamElectronInfo) {
63 // this check makes it square rather than a dR circle
64 if (fabs(pos[0] - foundElectrons.getX()) < tolerance_ &&
65 fabs(pos[1] - foundElectrons.getY()) < tolerance_) {
66 if (verbose_) {
67 ldmx_log(debug) << "\tHit at (x = " << pos[0] << ", y = " << pos[1]
68 << " matches electron found at (x = "
69 << foundElectrons.getX()
70 << ", y = " << foundElectrons.getY()
71 << "); skip this simhit";
72 }
73 isMatched = true;
74 break; // finding a match means Move on
75 } // if coordinates match something we already found
76 } // over found electrons
77 if (!isMatched) {
78 if (verbose_) {
79 ldmx_log(info) << "\tHit at (x = " << pos[0] << ", y = " << pos[1]
80 << " not formerly matched. Adding to collection.";
81 }
82 ldmx::BeamElectronTruth electronInfo;
83 electronInfo.setXYZ(pos[0], pos[1], pos[2]);
84 // find a way to do this later
85 // electronInfo.setThreeMomentum(simHit.getPx(), simHit.getPy(),
86 // simHit.getPz());
87
88 electronInfo.setBarX(bin(pos[0], granularityXmm_, minXmm_, maxXmm_));
89 electronInfo.setBarY(bin(pos[1], granularityYmm_, minYmm_, maxYmm_));
90 // set coordinates to bin center
91 electronInfo.setBinnedX(minXmm_ +
92 (electronInfo.getBarX() + 0.5) * granularityXmm_);
93 electronInfo.setBinnedY(minYmm_ +
94 (electronInfo.getBarY() + 0.5) * granularityYmm_);
95
96 beamElectronInfo.push_back(electronInfo);
97 }
98 } // over simhits in the collection
99
100 event.add(outputColl_, beamElectronInfo);
101}
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:92
Represents the truth information on beam electrons at the target.
void setBarX(double x)
Set x bar number of the found beam electron.
void setBinnedY(double y)
SetBinned y coordinate of the found beam electron.
double getBarX()
Get x bar number of the found beam electron.
double getBarY()
Get y bar number of the found beam electron.
void setXYZ(double x, double y, double z)
Set all three spatial coordinates at once.
void setBarY(double y)
Set y bar number of the found beam electron.
void setBinnedX(double x)
SetBinned x coordinate of the found beam electron.
Stores simulated calorimeter hit information.
int bin(float coordinate, double binWidth, double min, double max)
Bins coordinates according to some given granularity (passed as argument).

References bin(), framework::Event::exists(), ldmx::BeamElectronTruth::getBarX(), ldmx::BeamElectronTruth::getBarY(), granularityXmm_, granularityYmm_, inputColl_, inputPassName_, maxXmm_, maxYmm_, minXmm_, minYmm_, outputColl_, ldmx::BeamElectronTruth::setBarX(), ldmx::BeamElectronTruth::setBarY(), ldmx::BeamElectronTruth::setBinnedX(), ldmx::BeamElectronTruth::setBinnedY(), ldmx::BeamElectronTruth::setXYZ(), tolerance_, and verbose_.

Member Data Documentation

◆ granularityXmm_

double recon::BeamElectronLocator::granularityXmm_
private

The granularity of the detector (e.g.

TS) in X, in mm

Definition at line 101 of file BeamElectronLocator.h.

Referenced by configure(), onProcessStart(), and produce().

◆ granularityYmm_

double recon::BeamElectronLocator::granularityYmm_
private

The granularity of the detector (e.g.

TS) in Y, in mm

Definition at line 105 of file BeamElectronLocator.h.

Referenced by configure(), onProcessStart(), and produce().

◆ inputColl_

std::string recon::BeamElectronLocator::inputColl_
private

The name of the input collection used for counting electrons.

Definition at line 67 of file BeamElectronLocator.h.

Referenced by configure(), onProcessStart(), and produce().

◆ inputPassName_

std::string recon::BeamElectronLocator::inputPassName_
private

The pass name of the input collection used for counting electrons.

Definition at line 72 of file BeamElectronLocator.h.

Referenced by configure(), onProcessStart(), and produce().

◆ maxXmm_

double recon::BeamElectronLocator::maxXmm_
private

The max value measured by the system (edge) in X, in mm.

Definition at line 87 of file BeamElectronLocator.h.

Referenced by configure(), onProcessStart(), and produce().

◆ maxYmm_

double recon::BeamElectronLocator::maxYmm_
private

The max value measured by the system (edge) in Y, in mm.

Definition at line 96 of file BeamElectronLocator.h.

Referenced by configure(), onProcessStart(), and produce().

◆ minXmm_

double recon::BeamElectronLocator::minXmm_
private

The min value measured by the system (edge) in X, in mm.

Definition at line 83 of file BeamElectronLocator.h.

Referenced by configure(), onProcessStart(), and produce().

◆ minYmm_

double recon::BeamElectronLocator::minYmm_
private

The min value measured by the system (edge) in Y, in mm.

Definition at line 92 of file BeamElectronLocator.h.

Referenced by configure(), onProcessStart(), and produce().

◆ outputColl_

std::string recon::BeamElectronLocator::outputColl_
private

The name of the output collection used to save some electron counting variables.

Definition at line 78 of file BeamElectronLocator.h.

Referenced by configure(), onProcessStart(), and produce().

◆ tolerance_

double recon::BeamElectronLocator::tolerance_
private

The tolerance within which simhits are considered to belong to the same electron.

Definition at line 111 of file BeamElectronLocator.h.

Referenced by configure(), onProcessStart(), and produce().

◆ verbose_

bool recon::BeamElectronLocator::verbose_ {false}
private

Indicate verbose printout to log according to log level.

Definition at line 116 of file BeamElectronLocator.h.

116{false};

Referenced by configure(), onProcessStart(), and produce().


The documentation for this class was generated from the following files: