forked from JeffersonLab/SBS-offline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SBSBBTotalShower.cxx
434 lines (358 loc) · 13.6 KB
/
SBSBBTotalShower.cxx
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
///////////////////////////////////////////////////////////////////////////////
//
// SBSBBTotalShower
//
// A total shower counter, consisting of a shower and a preshower.
// Calculates the total energy deposited in Shower+Preshower.
//
//
#include "THaApparatus.h"
#include "THaPidDetector.h"
#include "SBSBBTotalShower.h"
#include "SBSBBShower.h"
#include "VarType.h"
#include "VarDef.h"
#include "TMath.h"
#include <cstring>
#include <iostream>
#include <iomanip>
using namespace std;
class THaEvData;
class TClonesArray;
class TDatime;
ClassImp(SBSBBTotalShower)
//_____________________________________________________________________________
SBSBBTotalShower::SBSBBTotalShower( const char* name, const char* description,
THaApparatus* apparatus ) :
SBSCalorimeter(name,description,apparatus),
fShower(nullptr), fPreShower(nullptr), fMaxDx(0.4), fMaxDy(0.4), fTotalSum_Threshold(0.0)
//fE(0.0), fX(0.0), fY(0.0)//, fID(NULL)
{
// Constructor. With this method, the subdetectors are created using
// this detector's prefix followed by "sh" and "ps", respectively,
// and variable names like "L.ts.sh.nhits".
DEBUG_HALL_A_ANALYZER_DEBUGER_INIT;
DEBUG_LEVEL_RELATED_PERFORMACE_CHECKER;
Setup( name, "sh", "ps", description, apparatus, true );
}
//_____________________________________________________________________________
SBSBBTotalShower::SBSBBTotalShower( const char* name,
const char* shower_name,
const char* preshower_name,
const char* description,
THaApparatus* apparatus ) :
SBSCalorimeter(name,description,apparatus),
fShower(nullptr), fPreShower(nullptr),fMaxDx(0.4), fMaxDy(0.4)
//fE(0.0), fX(0.0), fY(0.0)
{
// Constructor. With this method, the subdetectors are created using
// the given names 'shower_name' and 'preshower_name', and variable
// names like "L.sh.nhits".
Setup( name, shower_name, preshower_name, description, apparatus, false );
}
//_____________________________________________________________________________
void SBSBBTotalShower::Setup( const char* name,
const char* shower_name,
const char* preshower_name,
const char* description,
THaApparatus* apparatus,
bool subnames )
{
DEBUG_LEVEL_RELATED_PERFORMACE_CHECKER;
DEBUG_HALL_A_ANALYZER_DEBUGER_INIT;
// Set up the total shower counter. Called by constructor.
static const char* const here = "Setup()";
static const char* const message =
"Must construct %s detector with valid name! Object construction failed.";
// Base class constructor failed?
if( IsZombie()) return;
size_t sh, ps;
if( !shower_name || (sh = strlen(shower_name)) == 0 ) {
Error( Here(here), message, "shower" );
MakeZombie();
return;
}
if( !preshower_name || (ps = strlen(preshower_name)) == 0 ) {
Error( Here(here), message, "preshower" );
MakeZombie();
return;
}
size_t nlen = strlen(name);
size_t slen = TMath::Max(ps,sh);
size_t len = slen;
if( subnames )
len += nlen+1;
char* subname = new char[ len+1 ];
const char* sname;
if( subnames ) {
strcpy( subname, name );
strcat( subname, "." );
strcat( subname, shower_name );
sname = subname;
} else
sname = shower_name;
char* desc = new char[ 50+strlen(description) ];
if( description && *description )
strcpy( desc, description );
else {
strcpy( desc, "Total shower counter" );
SetTitle( desc );
}
size_t dlen = strlen(desc);
strcat( desc, " shower subdetector" );
fShower = new SBSBBShower( sname, desc, apparatus );
//fShower = new SBSCalorimeter( sname, desc, apparatus );
if( !fShower || fShower->IsZombie() ) {
MakeZombie();
goto exit;
}
//GetApparatus()->AddDetector(fShower);
//if(GetApparatus())cout << GetApparatus()->GetName() << endl;
//if(fShower->GetApparatus())cout << fShower->GetApparatus()->GetName() << endl;
if( subnames )
strcpy( subname+nlen+1, preshower_name );
else
sname = preshower_name;
strcpy( desc+dlen, " preshower subdetector" );
fPreShower = new SBSBBShower( sname, desc, apparatus );
//fPreShower = new SBSCalorimeter( sname, desc, apparatus );
if( !fPreShower && fPreShower->IsZombie() ) {
MakeZombie();
goto exit;
}
//GetApparatus()->AddDetector(fShower);
exit:
delete [] subname;
delete [] desc;
}
//_____________________________________________________________________________
Int_t SBSBBTotalShower::Decode( const THaEvData& evdata )
{
fShower->Decode(evdata);
fPreShower->Decode(evdata);
return 0;
}
//_____________________________________________________________________________
void SBSBBTotalShower::Clear( Option_t* opt )
{
SBSCalorimeter::Clear(opt);
fShower->Clear(opt);
fPreShower->Clear(opt);
fSHclusPSclusIDmap.clear();
fPassedThreshold = 0;
}
//_____________________________________________________________________________
SBSBBTotalShower::~SBSBBTotalShower()
{
// Destructor. Remove variables from global list.
if( fIsSetup )
RemoveVariables();
/*
delete [] fE; fE = 0;
delete [] fX; fX = 0;
delete [] fY; fY = 0;
delete [] fID; fID = 0;
*/
fPSSHmatchmapX.clear();
fPSSHmatchmapY.clear();
//delete fPSSHmatchmapX;
//delete fPSSHmatchmapY;
delete fPreShower;
delete fShower;
}
//_____________________________________________________________________________
THaAnalysisObject::EStatus SBSBBTotalShower::Init( const TDatime& run_time )
{
// Set up total shower counter. This function
// reads the total shower parameters from a local database file
// (e.g. "db_ts.dat"), then calls Init() for
// the shower and preshower subdetectors, respectively.
if( IsZombie() || !fShower || !fPreShower )
return fStatus = kInitError;
EStatus status;
if( (status = SBSCalorimeter::Init( run_time )) ||
(status = fShower->Init( run_time )) ||
(status = fPreShower->Init( run_time )) )
return fStatus = status;
return fStatus;
}
//_____________________________________________________________________________
Int_t SBSBBTotalShower::ReadDatabase( const TDatime& date )
{
// Read this detector's parameters from the database file 'fi'.
// This function is called by THaDetectorBase::Init() once at the
// beginning of the analysis.
// 'date' contains the date/time of the run being analyzed.
//static const char* const here = "ReadDatabase()";
FILE* file = OpenFile( date );
if( !file ) return kFileError;
/*
// Read fOrigin and fSize (required!) // ou pas
Int_t err = ReadGeometry( file, date, true );
if( err ) {
//cout << " readgeo err" << endl;
fclose(file);
return err;
}
*/
string components_names;
std::vector<Int_t> pssh_matchmap_x;
std::vector<Int_t> pssh_matchmap_y;
DBRequest config_request[] = {
{ "components", &components_names, kString, 0, 1},
{ "pssh_matchmap_x", &pssh_matchmap_x, kIntV, 0, 1},
{ "MaxDx", &fMaxDx, kDouble, 0, 1},
{ "MaxDy", &fMaxDy, kDouble, 0, 1},
{ "pssh_matchmap_y", &pssh_matchmap_y, kIntV, 0, 1},
{ "totalsum_threshold", &fTotalSum_Threshold, kDouble, 0, 1},
{ 0 }
};
Int_t err = LoadDB( file, date, config_request, fPrefix );
fclose(file);
if( err ) {
return kInitError;
}
for(unsigned int i = 0; i<pssh_matchmap_x.size(); i+=3){
fPSSHmatchmapX[ pssh_matchmap_x[i] ] =
std::make_pair(pssh_matchmap_x[i+1], pssh_matchmap_x[i+2]);
}
for(unsigned int i = 0; i<pssh_matchmap_y.size(); i+=3){
fPSSHmatchmapY[ pssh_matchmap_y[i] ] =
std::make_pair(pssh_matchmap_y[i+1], pssh_matchmap_y[i+2]);
}
return kOK;
}
//_____________________________________________________________________________
Int_t SBSBBTotalShower::DefineVariables( EMode mode )
{
// Initialize global variables and lookup table for decoder
if( mode == kDefine && fIsSetup ) return kOK;
fIsSetup = ( mode == kDefine );
// Register global variables
RVarDef vars[] = {
{ "over_threshold", "Max. total sum (SH + PS) above user threshold", "fPassedThreshold" },
{0}
};
Int_t err = DefineVarsFromList( vars, mode );
if( err ) return err;
return 0;
}
//_____________________________________________________________________________
Int_t SBSBBTotalShower::CoarseProcess(TClonesArray& tracks )
{
// cout << "SBSBBTotalShower::CoarseProcess " << endl;
fPassedThreshold = 0;
fShower->CoarseProcess(tracks);
fPreShower->CoarseProcess(tracks);
//
fShower->MakeGoodBlocks();
fPreShower->MakeGoodBlocks();
//
fShower->FindClusters();
// match blocks hit in Preshower to clusters in the Shower
std::vector<SBSCalorimeterCluster*> &ShowerClusters = fShower->GetClusters();
fSHclusPSclusIDmap.resize(ShowerClusters.size());
std::vector<SBSBlockSet> &PreShowerBlockSet = fPreShower->GetBlockSet();
std::vector<SBSCalorimeterCluster*> &PreShowerClusters = fPreShower->GetClusters();
Int_t PreShower_Nclus= 0;
double TotalSum_max = 0.0;
int iclust_sh_TotalSum_max = -1;
int iclust_ps_TotalSum_max = -1;
for (UInt_t nc=0;nc<ShowerClusters.size();nc++) {
Double_t xsh = ShowerClusters[nc]->GetX();
Double_t ysh = ShowerClusters[nc]->GetY();
Double_t esh = ShowerClusters[nc]->GetE();
Double_t tsh = ShowerClusters[nc]->GetAtime();
Bool_t AddToPreShowerCluster = kFALSE;
fSHclusPSclusIDmap[nc] = -1;
for (UInt_t nps=0;nps<PreShowerBlockSet.size();nps++) {
if (!PreShowerBlockSet[nps].InCluster) {
SBSElement* psblk = fPreShower->GetElement(PreShowerBlockSet[nps].id);
Double_t xps = PreShowerBlockSet[nps].x;
Double_t yps = PreShowerBlockSet[nps].y;
Double_t tps = PreShowerBlockSet[nps].ADCTime;
Bool_t MatchCriterion = fabs(xsh-xps) <= fMaxDx && fabs(ysh-yps) <= fMaxDy && fabs( tsh-tps ) <= fPreShower->GetTmax();
if (MatchCriterion) {
PreShowerBlockSet[nps].InCluster = kTRUE;
if (!AddToPreShowerCluster) {
//First block passing shower match criterion: create cluster
fPreShower->MakeCluster(PreShowerBlockSet.size(),psblk); //Start cluster with this block (psblk) as seed
//fSHclusPSclusIDmap[nc] = fPreShower->GetClusters().size()-1;
fSHclusPSclusIDmap[nc] = PreShower_Nclus;
AddToPreShowerCluster = kTRUE;
PreShower_Nclus++;
} else {
fPreShower->AddToCluster(PreShower_Nclus-1,psblk);
}
}
}
}
//The question here is, do we want to continue adding empty clusters to the preshower
//cluster array? I think not.
//if (!AddToPreShowerCluster && PreShowerBlockSet.size()>0) fPreShower->MakeCluster(PreShowerBlockSet.size()); // If preshower not matched to shower, make preshower cluster with mult = 0
double TotalSum = ShowerClusters[nc]->GetE();
if( AddToPreShowerCluster ){
TotalSum += PreShowerClusters[fSHclusPSclusIDmap[nc]]->GetE();
}
if( iclust_sh_TotalSum_max < 0 || TotalSum > TotalSum_max ){
TotalSum_max = TotalSum;
iclust_sh_TotalSum_max = nc;
iclust_ps_TotalSum_max = fSHclusPSclusIDmap[nc];
}
}
//Now let's override "Main cluster" variables for both shower and preshower:
//First: clear out fMainclus:
//fShower->ClearCaloOutput( fShower->fMainclus );
// Since fMainclus is a protected member of SBSCalorimeter, we clear
// the main cluster info using the MakeMainCluster method of SBSBBShower
fShower->MakeMainCluster( iclust_sh_TotalSum_max );
//if( iclust_ps_TotalSum_max >= 0 ){
fPreShower->MakeMainCluster( iclust_ps_TotalSum_max );
//}
if( TotalSum_max >= fTotalSum_Threshold ) fPassedThreshold = 1;
//
// std::cout << "TotalSum_max, totalsum_threshold, passed = " << TotalSum_max << ", "
// << fTotalSum_Threshold << ", " << fPassedThreshold << std::endl;
return 0;
}
//_____________________________________________________________________________
Int_t SBSBBTotalShower::FineProcess( TClonesArray& tracks )
{
// Fine processing.
// Call fPreShower->FineProcess() and fShower->FineProcess() in turn.
// Return return value of fShower->FineProcess().
if( !IsOK() )
return -1;
fPreShower->FineProcess( tracks );
fShower->FineProcess( tracks );
return 0;
}
//_____________________________________________________________________________
void SBSBBTotalShower::SetApparatus( THaApparatus* app )
{
// Set the apparatus of this detector as well as the subdetectors
SBSCalorimeter::SetApparatus( app );
fShower->SetApparatus( app );
fPreShower->SetApparatus( app );
}
//_____________________________________________________________________________
void SBSBBTotalShower::LoadMCHitAt( Double_t x, Double_t y, Double_t E )
{
Clear();
/*
fNclust = 0;
fE = double(E);
fX = x;
fY = y;
fNclust++;
if( fShower )
{
fShower->LoadMCHitAt( x, y, E );
}
if( fPreShower )
{
fPreShower->LoadMCHitAt( x, y, E );
}
*/
}
///////////////////////////////////////////////////////////////////////////////