forked from SuperNEMO-DBD/SensitivityModule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSensitivityModule.h
213 lines (182 loc) · 9.17 KB
/
SensitivityModule.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
//! \file SensitivityModule.h
//! \brief Example processing module for flreconstruct
//! \details Process a things object
#ifndef TESTMODULE_HH
#define TESTMODULE_HH
// Standard Library
// Third Party
//#include <boost/foreach.hpp>
#include "TFile.h"
#include "TTree.h"
#include "TMath.h"
#include "TF1.h"
#include "TVector3.h"
// - Bayeux
#include "bayeux/dpp/base_module.h"
#include "bayeux/mctools/simulated_data.h"
#include "bayeux/genbb_help/primary_particle.h"
#include "bayeux/genbb_help/primary_event.h"
#include "bayeux/datatools/service_manager.h"
#include "bayeux/geomtools/manager.h"
#include "bayeux/geomtools/geometry_service.h"
#include "bayeux/geomtools/line_3d.h"
#include "bayeux/geomtools/helix_3d.h"
#include "bayeux/geomtools/geomtools.h"
// - Falaise
#include "falaise/snemo/datamodels/calibrated_data.h"
#include "falaise/snemo/datamodels/tracker_clustering_data.h"
#include "falaise/snemo/datamodels/tracker_clustering_solution.h"
#include "falaise/snemo/datamodels/particle_track_data.h"
// From this application
#include "TrackDetails.h"
typedef struct SensitivityEventStorage{
bool passes_two_calorimeters_;
bool passes_two_plus_calos_;
bool passes_two_clusters_;
bool passes_two_tracks_;
bool passes_associated_calorimeters_;
int number_of_electrons_;
int number_of_gammas_;
double total_calorimeter_energy_;
double lower_electron_energy_; // MeV
double higher_electron_energy_;// MeVir
std::vector<double> electron_energies_;
std::vector<int> electron_charges_;
std::vector<double> gamma_energies_;
std::vector<double>* delayed_track_time_;
std::vector<double> electron_track_lengths_;
std::vector<int> electron_hit_counts_;
// Get vertex position of up to two tracks in mm
double first_vertex_x_; // Foil is at x ~ 0, main calo walls are at +/- 434.994 mm according to flvisualize
double first_vertex_y_; // y direction is horizontal, parallel to the foil, you can see it in top view
// Foil goes from roughly y = -2500 to 2500mm (look up the actual values), the where we get x-calo blocks
double first_vertex_z_; // z direction is vertical, parallel to the wires, you can see it in side view
// edges of foil are about z= -1300 to 1300mm (don't have exact numbers right now)
double second_vertex_x_;
double second_vertex_y_;
double second_vertex_z_;
// And momenta at the first vertex
double first_track_direction_x_;
double first_track_direction_y_;
double first_track_direction_z_;
double second_track_direction_x_;
double second_track_direction_y_;
double second_track_direction_z_;
// While I will keep those for legacy (at least for now), also add vectors of electron vertices and directions
std::vector<double> electron_vertex_x_;
std::vector<double> electron_vertex_y_;
std::vector<double> electron_vertex_z_;
std::vector<double> electron_dir_x_;
std::vector<double> electron_dir_y_;
std::vector<double> electron_dir_z_;
std::vector<double> electron_proj_vertex_x_;
std::vector<double> electron_proj_vertex_y_;
std::vector<double> electron_proj_vertex_z_;
std::vector<double> alpha_vertex_x_;
std::vector<double> alpha_vertex_y_;
std::vector<double> alpha_vertex_z_;
std::vector<double> alpha_dir_x_;
std::vector<double> alpha_dir_y_;
std::vector<double> alpha_dir_z_;
std::vector<double> alpha_proj_vertex_x_;
std::vector<double> alpha_proj_vertex_y_;
std::vector<double> alpha_proj_vertex_z_;
// Use these to estimate the vertex position if the vertex were on the foil (x=0)
// We only need y and z values for these, as x will always be 0 by definition
double first_proj_vertex_y_;
double first_proj_vertex_z_;
double second_proj_vertex_y_;
double second_proj_vertex_z_;
// Use these to calculate the angle between tracks
double angle_between_tracks_;
double same_side_of_foil_;
double vertex_separation_; // How far apart are their vertices (the ones nearest the foil)
double foil_projection_separation_; // How far apart would the vertices be if the tracks were projected back to the foil? Sometimes a track will not be reconstructed all the way back even if it really was from the foil
double projection_distance_xy_; // Distance between the end of the track and the foil projected vertex, in the xy plane (ie ignoring distance along wires - gives an indication of how many hits were missed). There are 2 tracks in a good event, and we want the longer of the two distances.
int vertices_on_foil_; // How many tracks included a vertex on the foil?
std::vector<bool> electrons_from_foil_; // For each electron, is the vertex on the foil?
// For calculating probability of an internal/external topology
double calo_hit_time_separation_;
bool topology_2e_; // Does it have a 2-electron-like topology?
double internal_probability_;
double external_probability_;
// These might help where the clusterer cannot reconstruct tracks all the way to the foil
double foil_projected_internal_probability_;
double foil_projected_external_probability_;
bool topology_1e1gamma_; // Does topology look like 1 electron, 1 gamma?
bool topology_1engamma_; // Does topology look like 1 electron, 1 or more gammas?
bool topology_1e1alpha_; // Does topology look like 1 electron, 1 alpha?
bool topology_1e_; // 1 electron and nothing else
// For electrons and gammas, get the position of the earliest associated calorimeter hit
// (for electrons we currently associate only 1 but gamma tracks can hit multiple calos
std::vector<bool> electron_hits_mainwall_;
std::vector<bool> electron_hits_xwall_;
std::vector<bool> electron_hits_gveto_;
std::vector<bool> gamma_hits_mainwall_;
std::vector<bool> gamma_hits_xwall_;
std::vector<bool> gamma_hits_gveto_;
std::vector<double> gamma_fractions_mainwall_;
std::vector<double> gamma_fractions_xwall_;
std::vector<double> gamma_fractions_gveto_;
// Debug information
int calorimeter_hit_count_; // How many calorimeter hits over threshold?
int cluster_count_; // How many clusters with 3 or more hits?
int track_count_; // How many reconstructed tracks?
int associated_track_count_; // How many reconstructed tracks with an associated calorimeter?
int delayed_hit_count_; // Number of delated tracker hits, regardless of whether they are tracked as alphas
int alpha_count_; // How many reconstructed alphas (formed from one or more delayed hits)?
int foil_alpha_count_; //How many reconstructed alphas (ie delayed hits) that we think have a vertex on the foil?
int delayed_cluster_hit_count_; //How many geiger hits in the alpha track
int small_cluster_count_; // How many clusters with 2 hits?
double highest_gamma_energy_; // Highest energy gamma
double edgemost_vertex_; // Y position of the foil vertex nearest the side of the detector
double alpha_track_length_; // Length of the alpha track in mm, different metrics for different numbers of delayed hits
double proj_track_length_alpha_; // Length of the alpha track when projected back to the foil in mm
bool alpha_crosses_foil_; // True if the alpha track crosses the foil (bug in alpha finder)
// Truth info - particle energies in MeV and primary vertex position
double true_highest_primary_energy_;
double true_second_primary_energy_;
double true_total_energy_;
int true_higher_particle_type_;
int true_lower_particle_type_;
double true_vertex_x_;
double true_vertex_y_;
double true_vertex_z_;
}sensitivityeventstorage;
// This Project
class SensitivityModule : public dpp::base_module {
static const uint minHitsInCluster=3;
public:
//! Construct module
SensitivityModule();
//! Destructor
virtual ~SensitivityModule();
//! Configure the module
virtual void initialize(const datatools::properties& myConfig,
datatools::service_manager& flServices,
dpp::module_handle_dict_type& moduleDict);
//! Process supplied data record
virtual dpp::base_module::process_status process(datatools::things& workItem);
//! Reset the module
virtual void reset();
private:
TFile* hfile_;
TTree* tree_;
SensitivityEventStorage sensitivity_;
// configurable data member
std::string filename_output_;
// geometry service
const geomtools::manager* geometry_manager_; //!< The geometry manager
double ProbabilityFromChiSquared(double chiSquared);
void CalculateProbabilities(double &internalProbability, double &externalProbability, double *calorimeterEnergies, double *betas, double *trackLengths, double *calorimeterTimes, double *totalTimeVariances );
void CalculateProbabilities(double &internalProbability, double &externalProbability, std::vector<TrackDetails*> twoParticles, bool projected);
// Functions used to populate the vectors of info about which calorimeter walls were hit
int InsertAndGetPosition(double toInsert, std::vector<double> &vec, bool highestFirst);
void PopulateWallVectors(std::vector<int> &calotypes, std::vector<bool> &mainVec, std::vector<bool> &xVec, std::vector<bool> &vetoVec);
template <typename T> void InsertAt(T toInsert, std::vector<T> &vec, int position);
void ResetVars();
// Macro which automatically creates the interface needed
// to enable the module to be loaded at runtime
DPP_MODULE_REGISTRATION_INTERFACE(SensitivityModule);
};
#endif // TESTMODULE_HH