Belle II Software development
SVDDQMEfficiencyModule.cc
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8
9#include <svd/modules/svdDQM/SVDDQMEfficiencyModule.h>
10#include <svd/dataobjects/SVDEventInfo.h>
11
12#include "TDirectory.h"
13
14using namespace Belle2;
15
16//-----------------------------------------------------------------
17// Register the Module
18//-----------------------------------------------------------------
19REG_MODULE(SVDDQMEfficiency);
20
21//-----------------------------------------------------------------
22// Implementation
23//-----------------------------------------------------------------
24
25SVDDQMEfficiencyModule::SVDDQMEfficiencyModule() : HistoModule(), m_geoCache(VXD::GeoCache::getInstance())
26{
27 // Set module properties
28 setDescription("Create basic histograms to compute the average sensor efficiency.");
29
30 // What exactly is needed for this to be true?
32
33 // Parameter definitions
34 addParam("Clusters", m_svdClustersName, "name of StoreArray with SVD cluster.", std::string(""));
35 addParam("Intercepts", m_interceptsName, "name of StoreArray with SVDIntercepts.", std::string(""));
36
37 addParam("histogramDirectoryName", m_histogramDirectoryName, "Name of the directory where histograms will be placed.",
38 std::string("SVDEfficiency"));
39
40 addParam("binsU", m_u_bins, "histogram bins in u direction.", int(4));
41 addParam("binsV", m_v_bins, "histogram bins in v direction.", int(6));
42
43
44 addParam("saveExpertHistos", m_saveExpertHistos, "if True, save additional histograms.", bool(false));
45
46 addParam("minSVDHits", m_minSVDHits, "Number of SVD hits required in a track to be considered.", 1u);
47 addParam("minCDCHits", m_minCDCHits, "Number of CDC hits required in a track to be considered.", 20u);
48
49 addParam("pValCut", m_pcut, "Set a cut on the track p-value.", double(0));
50 // addParam("d0Cut", m_d0cut, "|d0| smaller than the cut", double(0.5));
51 // addParam("z0Cut", m_z0cut, "|z0| smaller than the cut", double(2));
52
53 addParam("momCut", m_momCut, "Set a cut on the track momentum.", double(0));
54 addParam("ptCut", m_ptCut, "Set a cut on the track transverse momentum.", double(1));
55
56 addParam("fiducialU", m_fiducialU, "Fiducial Area, U direction.", float(0.5));
57 addParam("fiducialV", m_fiducialV, "Fiducial Area, V direction.", float(0.5));
58 addParam("maxHalfResidU", m_maxResidU, "half window for cluster search around intercept, U direction.", float(0.05));
59 addParam("maxHalfResidV", m_maxResidV, "half window for cluster search around intercept, V direction.", float(0.05));
60 addParam("samples3", m_3Samples, "if True 3 samples histograms analysis is performed", bool(false));
61}
62
63
65{
66 //calls the define histogram function
67 REG_HISTOGRAM;
68
69 //register the required arrays
70 //Register as optional so validation for cases where they are not available still succeeds, but module will not do any meaningful work without them
74
75}
76
77
79{
80 if (!m_svdClusters.isValid()) {
81 B2INFO("SVDClusters array is missing, no SVD efficiencies");
82 return;
83 }
84 if (!m_intercepts.isValid()) {
85 B2INFO("SVDIntercepts array is missing, no SVD efficiencies");
86 return;
87 }
88
89 if (!m_recoTracks.isValid()) {
90 B2INFO("RecoTracks array is missing, no SVD efficiencies");
91 return;
92 }
93
94 std::string m_svdEventInfoName = "SVDEventInfo";
95 StoreObjPtr<SVDEventInfo> eventinfo(m_svdEventInfoName);
96
97 int nSamples = 0;
98 if (eventinfo.isValid())
99 nSamples = eventinfo->getNSamples();
100 else
101 return;
102
103 //intercepts
104 for (int inter = 0 ; inter < m_intercepts.getEntries(); inter++) {
105
106 if (!isGoodIntercept(m_intercepts[inter]))
107 continue;
108
109 B2DEBUG(10, "this intercept is related to a good track");
110
111 VxdID::baseType theVxdID = (VxdID::baseType)m_intercepts[inter]->getSensorID();
112 double coorU = m_intercepts[inter]->getCoorU();
113 double coorV = m_intercepts[inter]->getCoorV();
115 int cellU = info.getUCellID(coorU);
116 int cellV = info.getVCellID(coorV);
117
118 const VXD::SensorInfoBase& theSensorInfo = m_geoCache.getSensorInfo(theVxdID);
119 if (theSensorInfo.inside(coorU, coorV, -m_fiducialU, -m_fiducialV)) {
120
121 //This track should be on the sensor
123 m_h_track_hits[theVxdID]->Fill(cellU, cellV);
124
125 m_TrackHits->fill(theVxdID, 0, 1);
126 m_TrackHits->fill(theVxdID, 1, 1);
127
128 if (m_3Samples) {
129 if (nSamples == 3) {
130 m_TrackHits3Sample->fill(theVxdID, 0, 1);
131 m_TrackHits3Sample->fill(theVxdID, 1, 1);
132 } else {
133 m_TrackHits6Sample->fill(theVxdID, 0, 1);
134 m_TrackHits6Sample->fill(theVxdID, 1, 1);
135 }
136 }
137
138 bool foundU = false;
139 bool foundV = false;
140
141 //loop on clusters
142 for (int cls = 0 ; cls < m_svdClusters.getEntries(); cls++) {
143
144 VxdID::baseType clVxdID = (VxdID::baseType)m_svdClusters[cls]->getSensorID();
145 if (clVxdID != theVxdID)
146 continue;
147
148 double maxResid = m_maxResidV;
149 double interCoor = coorV;
150 double resid = interCoor - m_svdClusters[cls]->getPosition();
151 if (m_svdClusters[cls]->isUCluster()) {
152 interCoor = coorU;
153 maxResid = m_maxResidU;
154 resid = interCoor - m_svdClusters[cls]->getPosition(coorV);
155 }
156
157
158 if (abs(resid) < maxResid) {
159 if (m_svdClusters[cls]->isUCluster()) {
160 foundU = true;
161 } else
162 foundV = true;
163 }
164
165 if (foundU && foundV)
166 break;
167 }
168
169 if (foundU) {
170 m_MatchedHits->fill(theVxdID, 1, 1);
171 if (m_3Samples) {
172 if (nSamples == 3)
173 m_MatchedHits3Sample->fill(theVxdID, 1, 1);
174 else
175 m_MatchedHits6Sample->fill(theVxdID, 1, 1);
176 }
177
178 if (m_saveExpertHistos) {
179 m_h_matched_clusterU[theVxdID]->Fill(cellU, cellV);
180 if (m_3Samples) {
181 if (nSamples == 3)
182 m_h_matched3_clusterU[theVxdID]->Fill(cellU, cellV);
183 else
184 m_h_matched6_clusterU[theVxdID]->Fill(cellU, cellV);
185 }
186 }
187 }
188
189 if (foundV) {
190 m_MatchedHits->fill(theVxdID, 0, 1);
191 if (m_3Samples) {
192 if (nSamples == 3)
193 m_MatchedHits3Sample->fill(theVxdID, 0, 1);
194 else
195 m_MatchedHits6Sample->fill(theVxdID, 0, 1);
196 }
197
198 if (m_saveExpertHistos) {
199 m_h_matched_clusterV[theVxdID]->Fill(cellU, cellV);
200 if (m_3Samples) {
201 if (nSamples == 3)
202 m_h_matched3_clusterV[theVxdID]->Fill(cellU, cellV);
203 else
204 m_h_matched6_clusterV[theVxdID]->Fill(cellU, cellV);
205 }
206 }
207 }
208
209 }
210 }
211}
212
214{
215 // Create a separate histogram directory and cd into it.
216 TDirectory* oldDir = gDirectory;
217 if (m_histogramDirectoryName != "") {
218 oldDir->mkdir(m_histogramDirectoryName.c_str());
219 oldDir->cd(m_histogramDirectoryName.c_str());
220 }
221 m_TrackHits = new SVDSummaryPlots("TrackHits@view", "Number of Tracks intercepting the @view/@side Side");
222 m_MatchedHits = new SVDSummaryPlots("MatchedHits@view", "Number of Matched Clusters on the @view/@side Side");
223
224 if (m_3Samples) {
225 m_TrackHits3Sample = new SVDSummaryPlots("TrackHits3@view", "Number of Tracks intercepting the @view/@side Side for 3 samples");
226 m_TrackHits6Sample = new SVDSummaryPlots("TrackHits6@view", "Number of Tracks intercepting the @view/@side Side for 6 samples");
227 m_MatchedHits3Sample = new SVDSummaryPlots("MatchedHits3@view", "Number of Matched Clusters on the @view/@side Side for 3 samples");
228 m_MatchedHits6Sample = new SVDSummaryPlots("MatchedHits6@view", "Number of Matched Clusters on the @view/@side Side for 6 samples");
229 }
230
231 if (!m_saveExpertHistos) {
232 oldDir->cd();
233 return;
234 }
235
236 std::vector<VxdID> sensors = m_geoCache.getListOfSensors();
237 for (VxdID& avxdid : sensors) {
239 if (info.getType() != VXD::SensorInfoBase::SVD) continue;
240 //Only interested in SVD sensors
241
242 TString buff = (std::string)avxdid;
243 buff.ReplaceAll(".", "_");
244
245 int nu = info.getUCells();
246 int nv = info.getVCells();
247
248 m_h_track_hits[avxdid] = new TH2D("track_hits_" + buff, "tracks through sensor " + buff,
249 m_u_bins, -0.5, nu - 0.5, m_v_bins, -0.5, nv - 0.5);
250 m_h_matched_clusterU[avxdid] = new TH2D("matched_clusterU_" + buff, "track intersections with a matched U cluster" + buff,
251 m_u_bins, -0.5, nu - 0.5, m_v_bins, -0.5, nv - 0.5);
252 m_h_matched_clusterV[avxdid] = new TH2D("matched_clusterV_" + buff, "track intersections with a matched V cluster" + buff,
253 m_u_bins, -0.5, nu - 0.5, m_v_bins, -0.5, nv - 0.5);
254
255 if (m_3Samples) {
256 m_h_matched3_clusterU[avxdid] = new TH2D("matched3_clusterU_" + buff,
257 "track intersections with a matched U cluster for 3 samples" + buff,
258 m_u_bins, -0.5, nu - 0.5, m_v_bins, -0.5, nv - 0.5);
259 m_h_matched3_clusterV[avxdid] = new TH2D("matched3_clusterV_" + buff,
260 "track intersections with a matched V cluster for 3 samples" + buff,
261 m_u_bins, -0.5, nu - 0.5, m_v_bins, -0.5, nv - 0.5);
262
263 m_h_matched6_clusterU[avxdid] = new TH2D("matched6_clusterU_" + buff,
264 "track intersections with a matched U cluster for 6 samples" + buff,
265 m_u_bins, -0.5, nu - 0.5, m_v_bins, -0.5, nv - 0.5);
266 m_h_matched6_clusterV[avxdid] = new TH2D("matched6_clusterV_" + buff,
267 "track intersections with a matched V cluster for 6 samples" + buff,
268 m_u_bins, -0.5, nu - 0.5, m_v_bins, -0.5, nv - 0.5);
269 }
270 }
271 // cd back to root directory
272 oldDir->cd();
273}
274
275
276
278{
279
280 RelationVector<RecoTrack> theRC = DataStore::getRelationsWithObj<RecoTrack>(inter);
281
282 if (theRC.size() == 0)
283 return false;
284
285 //If fit failed assume position pointed to is useless anyway
286 if (!theRC[0]->wasFitSuccessful()) return false;
287
288 if (theRC[0]->getNumberOfSVDHits() < m_minSVDHits) return false;
289
290 if (theRC[0]->getNumberOfCDCHits() < m_minCDCHits) return false;
291
292 const genfit::FitStatus* fitstatus = theRC[0]->getTrackFitStatus();
293 if (fitstatus->getPVal() < m_pcut) return false;
294
295 genfit::MeasuredStateOnPlane trackstate;
296 trackstate = theRC[0]->getMeasuredStateOnPlaneFromFirstHit();
297 if (trackstate.getMom().Mag() < m_momCut) return false;
298
299 if (trackstate.getMom().Perp() < m_ptCut) return false;
300
301 return true;
302
303}
HistoModule.h is supposed to be used instead of Module.h for the modules with histogram definitions t...
Definition: HistoModule.h:29
void setDescription(const std::string &description)
Sets the description of the module.
Definition: Module.cc:214
void setPropertyFlags(unsigned int propertyFlags)
Sets the flags for the module properties.
Definition: Module.cc:208
@ c_ParallelProcessingCertified
This module can be run in parallel processing mode safely (All I/O must be done through the data stor...
Definition: Module.h:80
Class for type safe access to objects that are referred to in relations.
size_t size() const
Get number of relations.
float m_fiducialV
stay away from the U border by m_fiducialU (in cm)
SVDDQMEfficiencyModule()
Constructor: Sets the description, the properties and the parameters of the module.
std::string m_svdClustersName
SVDClusters StoreArray name.
std::map< VxdID, TH2D * > m_h_track_hits
track hits histogram map to sensorID
void initialize() override final
initializes the need store arrays, trees and histograms
unsigned int m_minCDCHits
Required hits in CDC for tracks.
bool m_saveExpertHistos
save additional histograms id set True
std::map< VxdID, TH2D * > m_h_matched6_clusterV
matched V-hits histogram map to sensorID for 6 samples
StoreArray< SVDIntercept > m_intercepts
SVDIntercept StoreArray.
SVDSummaryPlots * m_MatchedHits3Sample
matched hits summary plot for 3 samples
VXD::GeoCache & m_geoCache
BelleII Geometry.
std::map< VxdID, TH2D * > m_h_matched3_clusterV
matched V-hits histogram map to sensorID for 3 samples
unsigned int m_minSVDHits
Required hits in SVD strips for tracks.
StoreArray< SVDCluster > m_svdClusters
SVDCluster StoreArray.
double m_momCut
Cut on fitted track momentum.
int m_u_bins
number of U-bins for expert histogram
std::map< VxdID, TH2D * > m_h_matched_clusterU
matched U-hits histogram map to sensorID
std::map< VxdID, TH2D * > m_h_matched6_clusterU
matched U-hits histogram map to sensorID for 6 samples
float m_fiducialU
stay away from the U border by m_fiducialU (in cm)
void defineHisto() override final
actually defines the trees and histograms
double m_pcut
pValue-Cut for tracks
bool isGoodIntercept(SVDIntercept *inter)
returns true if the track related to the intercept passes the selection cuts
void event() override final
main function which fills trees and histograms
std::string m_histogramDirectoryName
name of the directory where to store the histograms
float m_maxResidV
max distance cut in cm V side
bool m_3Samples
if true enable 3 samples histograms analysis
SVDSummaryPlots * m_MatchedHits6Sample
matched hits summary plot for 6 samples
std::map< VxdID, TH2D * > m_h_matched3_clusterU
matched U-hits histogram map to sensorID for 3 samples
int m_v_bins
number of V-bins for expert histogram
SVDSummaryPlots * m_MatchedHits
matched hits summary plot
SVDSummaryPlots * m_TrackHits
track hits summary plot
StoreArray< RecoTrack > m_recoTracks
RecoTrack StoreArray.
double m_ptCut
Cut on fitted track pt.
std::string m_interceptsName
SVDIntercepts StoreArray name.
SVDSummaryPlots * m_TrackHits3Sample
track hits summary plot for 3 samples
std::map< VxdID, TH2D * > m_h_matched_clusterV
matched V-hits histogram map to sensorID
SVDSummaryPlots * m_TrackHits6Sample
track hits summary plot for 6 samples
float m_maxResidU
max distance cut in cm U side
SVDIntercept stores the U,V coordinates and uncertainties of the intersection of a track with an SVD ...
Definition: SVDIntercept.h:22
class to summarize SVD quantities per sensor and side
void fill(int layer, int ladder, int sensor, int view, float value)
fill the histogram for
bool isOptional(const std::string &name="")
Tell the DataStore about an optional input.
bool isValid() const
Check wether the array was registered.
Definition: StoreArray.h:288
int getEntries() const
Get the number of objects in the array.
Definition: StoreArray.h:216
Type-safe access to single objects in the data store.
Definition: StoreObjPtr.h:96
const std::vector< VxdID > getListOfSensors() const
Get list of all sensors.
Definition: GeoCache.cc:59
const SensorInfoBase & getSensorInfo(Belle2::VxdID id) const
Return a referecne to the SensorInfo of a given SensorID.
Definition: GeoCache.cc:67
Base class to provide Sensor Information for PXD and SVD.
bool inside(double u, double v, double uTolerance=DBL_EPSILON, double vTolerance=DBL_EPSILON) const
Check wether a given point is inside the active area.
Class to uniquely identify a any structure of the PXD and SVD.
Definition: VxdID.h:33
unsigned short baseType
The base integer type for VxdID.
Definition: VxdID.h:36
void addParam(const std::string &name, T &paramVariable, const std::string &description, const T &defaultValue)
Adds a new parameter to the module.
Definition: Module.h:560
#define REG_MODULE(moduleName)
Register the given module (without 'Module' suffix) with the framework.
Definition: Module.h:650
Abstract base class for different kinds of events.