Belle II Software prerelease-10-00-00a
CDCTriggerNeuroDQMOnlineModule.h
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#pragma once
10
11#include <framework/core/HistoModule.h>
12
13#include <framework/datastore/StoreArray.h>
14#include <framework/datastore/StoreObjPtr.h>
15#include <trg/cdc/dataobjects/CDCTriggerTrack.h>
16#include <trg/cdc/dataobjects/CDCTriggerSegmentHit.h>
17#include <trg/cdc/dataobjects/CDCTriggerMLPInput.h>
18#include <tracking/dataobjects/RecoTrack.h>
19#include <framework/dataobjects/BinnedEventT0.h>
20
21#include "TH1F.h"
22
23namespace Belle2 {
28
33 class CDCTriggerNeuroDQMOnlineModule : public HistoModule { // <- derived from HistoModule class
34
35 public:
40
41
42 private:
43
44 struct TSLine {
45 const CDCTriggerSegmentHit* hit;
46 std::string strline;
47 //vector<const CDCTriggerTrack*> relin2dtracks;
48 //vector<const CDCTriggerTrack*> relin2dtracks;
49 explicit TSLine(const CDCTriggerSegmentHit& h)
50 {
51 hit = &h;
52 }
53 };
54 typedef std::vector<TSLine> TSLines;
55
57 void initialize() override;
58 void beginRun() override;
59 void event() override;
60 void endRun() override;
61 void terminate() override;
62 void fillHWPlots();
63 void fillSimPlots();
64 void makeDebugOutput();
65 void fillRecoPlots();
66
71 void defineHisto() override;
73 void condFill(TH1F* histo, float value)
74 {
75 if (value != 0) {
76 histo->Fill(value);
77 }
78 }
79
80 unsigned getPattern(CDCTriggerTrack* track, std::string hitCollectionName)
81 {
82 unsigned pattern = 0;
83 for (const CDCTriggerSegmentHit& hit : track->getRelationsTo<CDCTriggerSegmentHit>(hitCollectionName)) {
84 unsigned sl = hit.getISuperLayer();
85 if (sl % 2 == 1) pattern |= (1 << ((sl - 1) / 2));
86 }
87 return pattern;
88 }
89
90 bool isValidPattern(unsigned pattern)
91 {
92 bool valid = false;
93 switch (pattern) {
94 case 7:
95 case 11:
96 case 13:
97 case 14:
98 case 15:
99 valid = true;
100 }
101 return valid;
102 }
103 std::string padto(std::string s, unsigned l)
104 {
105 if (s.size() < l) {
106 s.insert(s.begin(), l - s.size(), ' ');
107 }
108 return s;
109 }
110 std::string padright(std::string s, unsigned l)
111 {
112 if (s.size() < l) {
113 s.insert(s.end(), l - s.size(), ' ');
114 }
115 return s;
116 }
117 bool have_relation(const CDCTriggerTrack& track, const CDCTriggerSegmentHit& hit, std::string& arrayname)
118 {
119 bool related = false;
120 for (const CDCTriggerSegmentHit& ts : track.getRelationsTo<CDCTriggerSegmentHit>(arrayname)) {
121 if (&ts == &hit) {related = true;}
122 }
123 return related;
124 }
125 void sorted_insert(TSLines& lines, TSLine& line, std::string& arrayname, std::string& firstsortarray, std::string& secondsortarray)
126 {
127 bool inserted = false;
128 bool related = false;
129 TSLines::iterator it = lines.begin();
130 for (const CDCTriggerTrack& track : line.hit->getRelationsFrom<CDCTriggerTrack>(firstsortarray)) {
131 if (!inserted) {
132 for (TSLines::iterator i = lines.begin(); i < lines.end(); ++i) {
133 if (i->hit->getISuperLayer() % 2 != line.hit->getISuperLayer() % 2) {
134 continue;
135 }
136 if (have_relation(track, *(i->hit), arrayname)) {
137 it = i;
138 related = true;
139 if (i->hit->getSegmentID() > line.hit->getSegmentID()) {
140 inserted = true;
141 break;
142 }
143 }
144 }
145 } else { break; }
146 }
147 if (related) {
148 if (!inserted) {++it; }
149 lines.insert(it, line);
150 } else {
151 for (const CDCTriggerTrack& track : line.hit->getRelationsFrom<CDCTriggerTrack>(secondsortarray)) {
152 if (!inserted) {
153 for (TSLines::iterator i = it; i < lines.end(); ++i) {
154 if (i->hit->getISuperLayer() % 2 != line.hit->getISuperLayer() % 2) {
155 continue;
156 }
157 if (have_relation(track, *(i->hit), arrayname)) {
158 it = i;
159 related = true;
160 if (i->hit->getSegmentID() > line.hit->getSegmentID()) {
161 inserted = true;
162 break;
163 }
164 }
165 }
166 } else { break; }
167 }
168 if (related) {
169 if (!inserted) {++it; }
170 lines.insert(it, line);
171 } else {
172 lines.push_back(line);
173 }
174 }
175 }
178
196 std::string m_recoTracksName;
197
202
203 // store arrays for direct access
224
225
226
227
228 TH1F* m_neuroHWOutdzall = nullptr;
229 TH1F* m_neuroHWOutdz0 = nullptr;
230 TH1F* m_neuroHWOutdz1 = nullptr;
231 TH1F* m_neuroHWOutdz2 = nullptr;
232 TH1F* m_neuroHWOutdz3 = nullptr;
233 TH1F* m_neuroHWSimRecodZ = nullptr;
234
235 TH1F* m_neuroHWOutZ = nullptr;
236 TH1F* m_recoZ = nullptr;
237 TH1F* m_recoZ_related = nullptr;
238 TH1F* m_neuroHWOutSTTZ = nullptr;
239 TH1F* m_neuroHWOutCosTheta = nullptr;
240 TH1F* m_neuroHWOutPhi0 = nullptr;
241 TH1F* m_neuroHWOutPt = nullptr;
242 TH1F* m_neuroHWOutP = nullptr;
243 TH1F* m_neuroHWOutm_time = nullptr;
244 TH1F* m_neuroHWValTracksNumber = nullptr;
245 TH1F* m_neuroHWSector = nullptr;
246 TH1F* m_neuroHWInTSID = nullptr;
247 TH1F* m_neuroHWInTSIDSel = nullptr;
248 TH1F* m_neuroHWInCDCFE = nullptr;
249 TH1F* m_neuroHWInm_time = nullptr;
250 TH1F* m_neuroHWIn2DTracksNumber = nullptr;
251
252 TH1F* m_neuroHWOutHwSimdZ = nullptr;
253 TH1F* m_neuroHWSimZ = nullptr;
254 TH1F* m_neuroHWSimCosTheta = nullptr;
255 TH1F* m_neuroErrors = nullptr;
256 TH1F* m_neuroHWValTSCountAx = nullptr;
257 TH1F* m_neuroHWValTSCountSt = nullptr;
258
259 unsigned m_errcount = 0; // set later
260 std::vector<std::string> m_errdict{"Not All HWTrack ATS in 2DInTrack", "|HW-SW| > 1cm", "Delta Input IDs not all 0", "Delta Input Alphas not all 0", "Drifttime Overflow / Scaling Error", "TS only in HW", "TS only in SW", "Multiple ET per Track", "<4 related Axial TS", "<3 related Stereo TS", "Drift Time diff", "Eventcounter"};
261
262 };
263
265}
StoreArray< CDCTriggerMLPInput > m_simNeuroInputVector
StoreArray for neuro input vector from TSIM.
StoreArray< CDCTriggerTrack > m_unpackedNeuroInput2DTracks
StoreArray for neuro input 2dfinder tracks.
StoreArray< CDCTriggerTrack > m_unpackedNeuroTracks
StoreArray for neuro tracks from unpacker.
std::string m_unpackedNeuroInputSegmentHitsName
Name for neuro input Track segments.
void condFill(TH1F *histo, float value)
Fill a histogram only with non-zero values.
void event() override
Function to process event record.
std::string m_unpacked2DTracksName
Name for 2D finder tracks from unpacker.
void endRun() override
Function to process end_run record.
bool m_useSimTracks
Switch to turn on use of hw sim tracks.
void terminate() override
Function to terminate module.
std::string m_unpackedNeuroInput2DTracksName
Name for neuro input 2d finder tracks.
StoreArray< CDCTriggerMLPInput > m_unpackedNeuroInputVector
StoreArray for neuro input vector from unpacker.
std::string m_unpackedNeuroInputAllSegmentHitsName
Name for TS hits from unpacker.
StoreArray< CDCTriggerTrack > m_simNeuroTracks
StoreArray for neuro tracks from TSIM.
std::string m_simNeuroInputVectorName
Name for simulated neuro input vector using HW TS, HW 2D.
void beginRun() override
Function to process begin_run record.
std::string m_histogramDirectoryName
Name of the histogram directory in ROOT file.
std::string m_recoTracksName
Name for the RecoTrack array name.
bool m_useRecoTracks
Switch to turn on use of recotracks.
std::string m_simNeuroTracksName
name of the storearray for hwsim tracks
unsigned getPattern(CDCTriggerTrack *track, std::string hitCollectionName)
get pattern of the track
std::string m_unpackedNeuroInputVectorName
Name for neuro input vector from unpacker.
bool isValidPattern(unsigned pattern)
Validity of the pattern.
StoreObjPtr< BinnedEventT0 > m_eventTime
storeobjpointer for event time
StoreArray< CDCTriggerSegmentHit > m_unpackedNeuroInputSegmentHits
StoreArray for neuro input Track segments.
StoreArray< CDCTriggerTrack > m_unpacked2DTracks
StoreArray for 2D finder tracks from unpacker.
std::string m_unpackedNeuroTracksName
Name for neuro tracks from unpacker.
StoreArray< RecoTrack > m_RecoTracks
StoreArray for RecoTracks.
StoreArray< CDCTriggerSegmentHit > m_unpackedNeuroInputAllSegmentHits
StoreArray for all TS hits from neuro unpacker.
void defineHisto() override
Histogram definitions such as TH1(), TH2(), TNtuple(), TTree()....
Combination of several CDCHits to a track segment hit for the trigger.
Track created by the CDC trigger.
HistoModule()
Constructor.
Definition HistoModule.h:32
Accessor to arrays stored in the data store.
Definition StoreArray.h:113
Type-safe access to single objects in the data store.
Definition StoreObjPtr.h:96
Abstract base class for different kinds of events.