/[PAMELA software]/DarthVader/CalorimeterLevel2/src/CaloCore.cpp
ViewVC logotype

Annotation of /DarthVader/CalorimeterLevel2/src/CaloCore.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (hide annotations) (download)
Tue May 30 15:10:57 2006 UTC (18 years, 6 months ago) by mocchiut
Branch: MAIN
CVS Tags: v0r02, v1r00
Changes since 1.3: +6 -2 lines
Small bug fixed

1 mocchiut 1.1 //
2     // Given a calibration and a data file this program create an ntuple with LEVEL2 calorimeter variables - Emiliano Mocchiutti
3     //
4 mocchiut 1.3 // CaloCore.cxx version 3.05 (2006-05-30)
5 mocchiut 1.1 //
6     // The only input needed is the path to the directory created by YODA for the data file you want to analyze.
7     //
8     // Changelog:
9 mocchiut 1.3 //
10 mocchiut 1.4 // 3.04 - 3.05 (2006-05-30): Qlast and nlast are now calculated using 4 (not 8) strips aournd the shower axis. Small bug fixed.
11 mocchiut 1.2 //
12     // 3.03 - 3.04 (2006-05-23): Forgot to put impx and impy in the PAMELA reference system, fixed.
13 mocchiut 1.1 //
14     // 3.02 - 3.03 (2006-05-18): updated to be called in DarthVader. Output dimension are now in cm and in the PAMELA reference system.
15     //
16     // 3.01 - 3.02 (2006-04-21): when copying entries get size of caclone and not of ca... (shouldn't matter). Fixed increasing file dimension bug when reprocessing.
17     // Added variable planemax[2], plane of maximum energy release (x and y) in final output. Use ItoRunInfo instead of RunInfo.
18     //
19     // 3.00 - 3.01 (2006-04-14): fixed small bug in tagging the track used to determine track-related variables, put in caloprocessing the opening of parameters files, fixed
20     // small bug in fortran routines
21     //
22     // 2.01 - 3.00 (2006-04-14): almost everything has changed. Now it can process one, all or some runs, introduced the final CaloLevel2 class+methods and the
23     // working class "CaloProcessing", linked to the preliminary tracker flight software v0r00, reads YODA unique output files,
24     // reduced the number of installed libraries, F77 programs splitted depending on the function contained, introduced the readout and
25     // processing of self-trigger events, if the tracker provides more than one track all calorimeter track-related variables are saved
26     // as many times as the number of tracks (via the TClonesArray object in the level2 rootple) and many other small changes.
27     //
28     // 2.00 - 2.01 (2006-01-26): bug: wrong calculation of baselines in some cases, fixed.
29     //
30     // 1.00 - 2.00 (2006-01-11): use TSQL ROOT classes instead of directly calling MySQL.
31     //
32     // 0.00 - 1.00 (2005-09-14): seems working.
33     //
34     // 0.00 (2005-09-09): clone of CaloLEVEL2.c .
35     //
36     // C/C++ headers
37     //
38     #include <fstream>
39     #include <string.h>
40     //
41     // ROOT headers
42     //
43     #include <TTree.h>
44     #include <TClassEdit.h>
45     #include <TObject.h>
46     #include <TList.h>
47     #include <TArrayL.h>
48     #include <TSystem.h>
49     #include <TSystemDirectory.h>
50     #include <TString.h>
51     #include <TFile.h>
52     #include <TClass.h>
53     #include <TCanvas.h>
54     #include <TH1.h>
55     #include <TH1F.h>
56     #include <TH2D.h>
57     #include <TLatex.h>
58     #include <TPad.h>
59     #include <TSQLServer.h>
60     #include <TSQLRow.h>
61     #include <TSQLResult.h>
62     #include <TClonesArray.h>
63     #include <TStreamerInfo.h>
64     //
65     // YODA headers
66     //
67     #include <PamelaRun.h>
68     #include <RegistryEvent.h>
69     #include <physics/trigger/TriggerEvent.h>
70     //
71     // This program headers
72     //
73     #include <RunInfo.h>
74     #include <CaloCore.h>
75     #include <CaloLevel2.h>
76     #include <CaloProcessing.h>
77     #include <CaloVerl2.h>
78     //
79     // Tracker classes headers and definitions
80     //
81     #include <TrkLevel2.h>
82     //
83     using namespace std;
84     //
85     // CORE ROUTINE
86     //
87     int CaloCore(ULong64_t run, TFile *file, TSQLServer *dbc, Int_t calargc, char *calargv[]){
88     //
89     // Set these to true to have a very verbose output.
90     //
91     Bool_t verbose = false;
92     Bool_t debug = false;
93     //
94     // Output directory is the working directoy.
95     //
96     const char* outdir = gSystem->DirName(gSystem->DirName(file->GetPath()));
97     //
98     Int_t ri = 0;
99     TString processFolder = "calorimeterFolder";
100     if ( calargc > 0 ){
101     ri = 0;
102     while ( ri < calargc ){
103     if ( !strcmp(calargv[ri],"-processFolder") ) {
104     if ( calargc < ri+1 ){
105     throw -3;
106     };
107     processFolder = (TString)calargv[ri+1];
108     ri++;
109     };
110     if ( !strcmp(calargv[ri],"-v") || !strcmp(calargv[ri],"--verbose") ) {
111     verbose = true;
112     };
113     if ( !strcmp(calargv[ri],"-g") || !strcmp(calargv[ri],"--debug") ) {
114     debug = true;
115     };
116     ri++;
117     };
118     };
119     //
120     // Working filename
121     //
122     TString outputfile;
123     stringstream name;
124     name.str("");
125     name << outdir << "/";
126     //
127     // Variables.
128     //
129     // TFile *file = 0;
130     TTree *tracker = 0;
131     TTree *calo = 0;
132     TTree *caloclone = 0;
133     Bool_t reproc = false;
134     Bool_t reprocall = false;
135     Long64_t nevents = 0LL;
136     UInt_t nobefrun = 0;
137     UInt_t noaftrun = 0;
138     UInt_t numbofrun = 0;
139     Long64_t totnorun = 0LL;
140     //
141     Int_t code = 0;
142     Int_t sgnl;
143     //
144     // calorimeter level2 classes
145     //
146     CaloLevel2 *ca = new CaloLevel2();
147     CaloLevel2 *caclone = new CaloLevel2();
148     //
149     TrkLevel2 *trk = new TrkLevel2();
150     Long64_t nevtrkl2 = 0;
151     //
152     UInt_t procev = 0;
153     //
154     // define variables where to store the absolute run header and run trailer times (unsigned long long integers, when set to a number use ULL to store the correct number).
155     //
156     ULong64_t runheadtime = 0ULL;
157     ULong64_t runtrailtime = 0ULL;
158     UInt_t evfrom = 0;
159     UInt_t evto = 0;
160     Long64_t totfileentries = 0LL;
161     Long64_t idRun = 0LL;
162     Int_t id_reg_run=-1;
163     stringstream ftmpname;
164     TString fname;
165     //
166     // define variables for opening and reading level0 file
167     //
168     TFile *l0File = 0;
169     TTree *l0tr = 0;
170     TBranch *l0head = 0;
171     TBranch *l0registry = 0;
172     TBranch *l0calo = 0;
173     TBranch *l0trig = 0;
174     pamela::RegistryEvent *l0reg=0;
175     pamela::trigger::TriggerEvent *trig = 0;
176     //
177     // Define some basic variables
178     //
179     CaloProcessing *event = new CaloProcessing(); // NOTICE: very important to call here the constructor!
180     stringstream file2;
181     stringstream file3;
182     stringstream qy;
183     // Bool_t imtrack = false;
184     Bool_t filled = false;
185     //
186     Long64_t caloevents = 0LL;
187     stringstream calfile;
188     stringstream aligfile;
189     //
190     Int_t i = -1;
191     Int_t itr = -1;
192     Int_t badevent = 0;
193     Int_t totevent = 0;
194     //
195     ULong64_t atime = 0ULL;
196     //
197     Int_t ei = 0;
198     Int_t S3 = 0;
199     Int_t S2 = 0;
200     Int_t S12 = 0;
201     Int_t S11 = 0;
202     UInt_t re = 0;
203     //
204     TString caloversion;
205     ItoRunInfo *runinfo = 0;
206     TArrayL *runlist = 0;
207     //
208     Float_t tmptrigty = -1.;
209     Int_t ntrkentry = 0;
210     GL_PARAM *q4 = new GL_PARAM();
211     ULong64_t tttrkpar1 = 0ULL;
212     Bool_t trkpar1 = true;
213     GL_ROOT *glroot = new GL_ROOT();
214     //
215     //
216     //
217     TFile *tempfile = 0;
218     TTree *tempcalo = 0;
219     stringstream tempname;
220     stringstream calofolder;
221     tempname.str("");
222     tempname << outdir;
223     tempname << "/" << processFolder.Data();
224     calofolder.str("");
225     calofolder << tempname.str().c_str();
226     gSystem->MakeDirectory(calofolder.str().c_str());
227     tempname << "/calotree_run";
228     tempname << run << ".root";
229     //
230     // As a first thing we must check what we have to do: if run = -1 we must process all events in the file has been passed
231     // if run != -1 we must process only that run but first we have to check if the branch calorimeter already exist in the file
232     // if it exists we are reprocessing data and we must delete that entries, if not we must create it.
233     //
234     if ( run == 0ULL ) reproc = true;
235     //
236     //
237     //
238     if ( !file->IsOpen() ){
239     if ( verbose ) printf(" CALORIMETER - ERROR: cannot open file for writing\n");
240     throw -101;
241     };
242     //
243     // Does it contain the Tracker tree?
244     //
245     tracker = (TTree*)file->Get("Tracker");
246     if ( !tracker ) {
247     if ( verbose ) printf(" CALORIMETER - ERROR: no tracker tree\n");
248     code = -102;
249     goto closeandexit;
250     };
251     tracker->SetBranchAddress("TrkLevel2",&trk);
252     nevtrkl2 = tracker->GetEntries();
253     //
254     // Call runinfo
255     //
256     sgnl = 0;
257     runinfo = new ItoRunInfo(file);
258     //
259     // update versioning information and retrieve informations about the run to be processed
260     //
261     caloversion = CaloInfo(false);
262     sgnl = runinfo->Update(run,"CALO",caloversion);
263     //
264     if ( sgnl ){
265     if ( verbose ) printf(" CALORIMETER - ERROR: RunInfo exited with non-zero status\n");
266     code = sgnl;
267     goto closeandexit;
268     } else {
269     sgnl = 0;
270     };
271     //
272     // number of events in the file BEFORE the first event of our run
273     //
274     nobefrun = runinfo->GetFirstEntry();
275     //
276     // total number of events in the file
277     //
278     totfileentries = runinfo->GetFileEntries();
279     //
280     // first file entry AFTER the last event of our run
281     //
282     noaftrun = runinfo->GetLastEntry() + 1;
283     //
284     // number of run to be processed
285     //
286     numbofrun = runinfo->GetNoRun();
287     //
288     // number of runs in the file
289     //
290     totnorun = runinfo->GetRunEntries();
291     //
292     // Does it contain already a Calorimeter branch? if so we are reprocessing data, if not we must create it.
293     //
294     caloclone = (TTree*)file->Get("Calorimeter");
295     //
296     if ( !caloclone ){
297     reproc = false;
298     if ( run == 0ULL && verbose ) printf(" CALORIMETER - WARNING: you are reprocessing data but calorimeter tree does not exist!\n");
299     if ( runinfo->IsReprocessing() && run != 0ULL && verbose ) printf(" CALORIMETER - WARNING: it seems you are not reprocessing data but calorimeter\n versioning information already exists in RunInfo.\n");
300     //
301     } else {
302     //
303     reproc = true;
304     //
305     if ( verbose ) printf("\n Preparing the pre-processing...\n");
306     //
307     // if ( run == 0ULL || totnorun == numbofrun ){
308     if ( run == 0ULL ){
309     //
310     // if we are reprocessing everything we don't need to copy any old event and we can just create a new branch in the clone tree and jump steps 4/5/7.
311     //
312     if ( verbose ) printf("\n CALORIMETER - WARNING: Reprocessing all runs in the file\n");
313     reprocall = true;
314     //
315     } else {
316     //
317     // we are reprocessing a single run
318     //
319     if ( verbose ) printf("\n CALORIMETER - WARNING: Reprocessing run number %llu \n",run);
320     reprocall = false;
321     //
322     //
323     //
324     tempfile = new TFile(tempname.str().c_str(),"RECREATE");
325     tempcalo = caloclone->CloneTree(-1,"fast");
326     tempcalo->SetName("Calorimeter-old");
327     tempfile->Write();
328     tempfile->Close();
329     };
330     //
331     // delete old tree
332     //
333     caloclone->Delete("all");
334     //
335     if ( verbose ) printf("\n ...done!\n");
336     //
337     };
338     //
339     // create calorimeter tree calo
340     //
341     file->cd();
342     calo = new TTree("Calorimeter-new","PAMELA Level2 calorimeter data");
343     calo->Branch("CaloLevel2","CaloLevel2",&ca);
344     //
345     if ( reproc && !reprocall ){
346     //
347     //
348     //
349     tempfile = new TFile(tempname.str().c_str(),"READ");
350     caloclone = (TTree*)tempfile->Get("Calorimeter-old");
351     caloclone->SetBranchAddress("CaloLevel2",&caclone);
352     //
353     if ( nobefrun > 0 ){
354     if ( verbose ) printf("\n Pre-processing: copying events from the old tree before the processed run\n");
355     if ( verbose ) printf(" Copying %u events in the file which are before the beginning of the run %llu \n",nobefrun,run);
356     if ( verbose ) printf(" Start copying at event number 0, end copying at event number %u \n",nobefrun);
357     for (UInt_t j = 0; j < nobefrun; j++){
358     //
359     caloclone->GetEntry(j);
360     //
361     // copy caclone to ca
362     //
363     ca = new CaloLevel2();
364     memcpy(&ca,&caclone,sizeof(caclone));
365     //
366     // Fill entry in the new tree
367     //
368     calo->Fill();
369     //
370     };
371     if ( verbose ) printf(" Finished successful copying!\n");
372     };
373     };
374     //
375     // Get the list of run to be processed
376     //
377     runlist = runinfo->GetRunList();
378     //
379     // Loop over the run to be processed
380     //
381     for (UInt_t irun=0; irun < numbofrun; irun++){
382     //
383     badevent = 0;
384     //
385     idRun = runlist->At(irun);
386     if ( verbose ) printf("\n\n\n ####################################################################### \n");
387     if ( verbose ) printf(" PROCESSING RUN NUMBER %llu \n",idRun);
388     if ( verbose ) printf(" ####################################################################### \n\n\n");
389     //
390     sgnl = runinfo->GetRunInfo(idRun);
391     if ( sgnl ){
392     if ( verbose ) printf(" CALORIMETER - ERROR: RunInfo exited with non-zero status\n");
393     code = sgnl;
394     goto closeandexit;
395     } else {
396     sgnl = 0;
397     };
398     id_reg_run = runinfo->ID_REG_RUN;
399     runheadtime = runinfo->RUNHEADER_TIME;
400     runtrailtime = runinfo->RUNTRAILER_TIME;
401     evfrom = runinfo->EV_REG_PHYS_FROM;
402     evto = runinfo->EV_REG_PHYS_TO;
403     //
404     if ( id_reg_run == -1 ){
405     if ( verbose ) printf("\n CALORIMETER - ERROR: no run with ID_RUN = %llu \n\n Exiting... \n\n",idRun);
406     code = -5;
407     goto closeandexit;
408     };
409     //
410     // Search in the DB the path and name of the LEVEL0 file to be processed.
411     //
412     glroot->Query_GL_ROOT(runinfo->ID_REG_RUN,dbc);
413     //
414     ftmpname.str("");
415     ftmpname << glroot->PATH.Data() << "/";
416     ftmpname << glroot->NAME.Data();
417     fname = ftmpname.str().c_str();
418     //
419     // print out informations
420     //
421     totevent = evto - evfrom + 1;
422     if ( verbose ) printf("\n LEVEL0 data file: %s \n",fname.Data());
423     if ( verbose ) printf(" RUN HEADER absolute time is: %llu \n",runheadtime);
424     if ( verbose ) printf(" RUN TRAILER absolute time is: %llu \n",runtrailtime);
425     if ( verbose ) printf(" %i events to be processed for run %llu: from %i to %i (reg entries)\n\n",totevent,idRun,evfrom,evto);
426     //
427     // Open Level0 file
428     //
429     l0File = new TFile(fname.Data());
430     if ( !l0File ) {
431     if ( verbose ) printf(" CALORIMETER - ERROR: problems opening Level0 file\n");
432     code = -6;
433     goto closeandexit;
434     };
435     l0tr = (TTree*)l0File->Get("Physics");
436     if ( !l0tr ) {
437     if ( verbose ) printf(" CALORIMETER - ERROR: no Physics tree in Level0 file\n");
438     l0File->Close();
439     code = -7;
440     goto closeandexit;
441     };
442     l0head = l0tr->GetBranch("Header");
443     if ( !l0head ) {
444     if ( verbose ) printf(" CALORIMETER - ERROR: no Header branch in Level0 tree\n");
445     l0File->Close();
446     code = -8;
447     goto closeandexit;
448     };
449     l0registry = l0tr->GetBranch("Registry");
450     if ( !l0registry ) {
451     if ( verbose ) printf(" CALORIMETER - ERROR: no Registry branch in Level0 tree\n");
452     l0File->Close();
453     code = -9;
454     goto closeandexit;
455     };
456     l0calo = l0tr->GetBranch("Calorimeter");
457     if ( !l0calo ) {
458     if ( verbose ) printf(" CALORIMETER - ERROR: no Calorimeter branch in Level0 tree\n");
459     l0File->Close();
460     code = -103;
461     goto closeandexit;
462     };
463     l0trig = l0tr->GetBranch("Trigger");
464     if ( !l0trig ) {
465     if ( verbose ) printf(" CALORIMETER - ERROR: no Trigger branch in Level0 tree\n");
466     l0File->Close();
467     code = -104;
468     goto closeandexit;
469     };
470     //
471     l0tr->SetBranchAddress("Trigger", &trig);
472     l0tr->SetBranchAddress("Registry", &l0reg);
473     //
474     // Construct the event object, look for the calibration which include the first header
475     //
476     sgnl = 0;
477     if ( verbose ) printf(" Check for calorimeter calibrations and initialize event object \n");
478     event->ProcessingInit(dbc,runheadtime,sgnl,l0tr,debug,verbose);
479     if ( verbose ) printf("\n");
480     if ( sgnl == 100 ) {
481     code = sgnl;
482     if ( verbose ) printf(" CALORIMETER - WARNING: run header not included in any calibration interval\n");
483     sgnl = 0;
484     };
485     if ( sgnl ){
486     l0File->Close();
487     code = sgnl;
488     goto closeandexit;
489     };
490     //
491     qy.str("");
492     //
493     nevents = l0registry->GetEntries();
494     caloevents = l0calo->GetEntries();
495     //
496     if ( nevents < 1 ) {
497     if ( verbose ) printf(" CALORIMETER - ERROR: Level0 file is empty\n\n");
498     l0File->Close();
499     code = -11;
500     goto closeandexit;
501     };
502     //
503     if ( evto > nevents-1 ) {
504     if ( verbose ) printf(" CALORIMETER - ERROR: too few entries in the registry tree\n");
505     l0File->Close();
506     code = -12;
507     goto closeandexit;
508     };
509     //
510     // Check if we have to load parameter files
511     //
512     sgnl = 0;
513     sgnl = event->ChkParam(dbc,runheadtime); // calorimeter parameter files
514     if ( sgnl < 0 ){
515     code = sgnl;
516     l0File->Close();
517     goto closeandexit;
518     };
519     //
520     if ( trkpar1 || ( tttrkpar1 != 0 && tttrkpar1 < runheadtime ) ){
521     trkpar1 = false;
522 mocchiut 1.4 Int_t glpar = q4->Query_GL_PARAM(runinfo->RUNHEADER_TIME,"field",dbc);
523     if ( glpar < 0 ){
524     code = glpar;
525     goto closeandexit;
526     };
527 mocchiut 1.1 tttrkpar1 = q4->TO_TIME;
528     // ----------------------------
529     // Read the magnetic field
530     // ----------------------------
531     if ( verbose ) printf(" Reading magnetic field maps at %s\n",(q4->PATH+q4->NAME).Data());
532     trk->LoadField(q4->PATH+q4->NAME);
533     if ( verbose ) printf("\n");
534     };
535     //
536     // run over all the events of the run
537     //
538     if ( verbose ) printf("\n Ready to start! \n\n Processed events: \n\n");
539     //
540     for ( re = evfrom; re <= evto; re++){
541     //
542     if ( procev%1000 == 0 && procev > 0 && verbose ) printf(" %iK \n",procev/1000);
543     //
544     l0registry->GetEntry(re);
545     //
546     // absolute time of this event
547     //
548     atime = l0reg->absTime;
549     //
550     // physics events is at entry number ei where
551     //
552     ei = l0reg->event;
553     //
554     //
555     //
556     if ( ei > caloevents-1 ){
557     if ( verbose ) printf(" CALORIMETER - ERROR: no physics events with entry = %i in Level0 file\n",i);
558     l0File->Close();
559     code = -112;
560     goto closeandexit;
561     };
562     //
563     if ( atime > runtrailtime || atime < runheadtime ) {
564     if ( verbose ) printf(" CALORIMETER - WARNING: event at time outside the run time window, skipping it\n");
565     goto jumpev;
566     };
567     //
568     // retrieve tracker informations
569     //
570     if ( !reprocall ){
571     itr = nobefrun + (re - evfrom);
572     } else {
573     itr = runinfo->GetFirstEntry() + (re - evfrom);
574     };
575     if ( itr > nevtrkl2 ){
576     if ( verbose ) printf(" CALORIMETER - ERROR: no tracker events with entry = %i in Level2 file\n",itr);
577     l0File->Close();
578     code = -113;
579     goto closeandexit;
580     };
581     tracker->GetEntry(itr);
582     //
583     procev++;
584     //
585     // start processing
586     //
587     ca = new CaloLevel2();
588     //
589     // determine who generate the trigger for this event (TOF, S4/PULSER, CALO)
590     //
591     l0trig->GetEntry(ei);
592     S3 = 0;
593     S2 = 0;
594     S12 = 0;
595     S11 = 0;
596     S3 = trig->patterntrig[2];
597     S2 = trig->patterntrig[3];
598     S12 = trig->patterntrig[4];
599     S11 = trig->patterntrig[5];
600     if ( trig->patterntrig[0] ) tmptrigty = 2.;
601     if ( S3 || S2 || S12 || S11 ) tmptrigty = 0.;
602     if ( trig->patterntrig[1] & (1<<0) || (!trig->patterntrig[0] && !S3 && !S2 && !S12 && !S11) ) tmptrigty = 1.;
603     event->clevel2->trigty = tmptrigty;
604     // event->clevel2->trigty = 2.;
605     //
606     // check if the calibration we are using is still good, if not load another calibration
607     //
608     sgnl = 0;
609     sgnl = event->ChkCalib(dbc,atime);
610     if ( sgnl < 0 ){
611     code = sgnl;
612     goto closeandexit;
613     };
614     if ( sgnl == 100 ){
615     code = sgnl;
616     if ( verbose ) printf(" CALORIMETER - WARNING: data not associated to any calibration interval\n");
617     badevent++;
618     sgnl = 0;
619     };
620     //
621     // do we have at least one track from the tracker?
622     //
623     event->clevel1->good2 = 1;
624     if ( trk->GetNTracks() > 0 ) event->clevel1->good2 = 1;
625     //
626     // Calibrate calorimeter event "ei" and store output in the two structures that will be passed to fortran routine
627     //
628     event->Calibrate(ei);
629     //
630     // Here we have calibrated data, ready to be passed to the FORTRAN routine which will extract topological variables.
631     //
632     //
633     // Calculate variables common to all tracks (qtot, nstrip, etc.)
634     //
635     event->GetCommonVar();
636     //
637     // Fill common variables
638     //
639     event->FillCommonVar(ca);
640     //
641     // Calculate variables related to tracks only if we have at least one track (from selftrigger and/or tracker)
642     //
643     ntrkentry = 0;
644     //
645     filled = false;
646     //
647     if ( event->clevel1->good2 == 1 || event->clevel2->trigty > 1. ){
648     //
649     if ( event->clevel1->good2 == 1 ){
650     //
651     // We have at least one track
652     //
653     //
654     // Run over tracks
655     //
656     for(Int_t nt=0; nt < trk->ntrk(); nt++){
657     //
658     event->clevel1->good2 = 1;
659     //
660     TrkTrack *ptt = trk->GetStoredTrack(nt);
661     //
662     event->clevel1->trkchi2 = 0;
663     //
664     // Copy the alpha vector in the input structure
665     //
666     for (Int_t e = 0; e < 5 ; e++){
667     event->clevel1->al_p[e][0] = ptt->al[e];
668     };
669     //
670     // Get tracker related variables for this track
671     //
672     event->GetTrkVar();
673     //
674     // Save tracker track sequence number
675     //
676    
677     event->trkseqno = nt;
678     //
679     // Copy values in the class ca from the structure clevel2
680     //
681     event->FillTrkVar(ca,ntrkentry);
682     ntrkentry++;
683     filled = true;
684     //
685     }; // loop on all the tracks
686     };
687     if ( event->clevel2->trigty >= 2. ){
688     if ( verbose ) printf(" Selftrigger event at entry %i \n",itr);
689     //
690     // Disable "track mode" in the fortran routine
691     //
692     event->clevel1->good2 = 0;
693     //
694     // We have a selftrigger event to analyze.
695     //
696     for (Int_t e = 0; e < 5 ; e++){
697     event->clevel1->al_p[e][0] = 0.;
698     event->clevel1->al_p[e][1] = 0.;
699     };
700     event->clevel1->trkchi2 = 0;
701     //
702     event->GetTrkVar();
703     //
704     // if we had no problem (clevel2->good = 0, NOTICE zero, not one in selftrigger mode!), fill and go on
705     //
706     if ( event->clevel1->good2 == 0 ) {
707     //
708     // In selftrigger mode the trkentry variable is set to -1
709     //
710     event->trkseqno = -1;
711     //
712     // Copy values in the class ca from the structure clevel2
713     //
714     event->FillTrkVar(ca,ntrkentry);
715     ntrkentry++;
716     filled = true;
717     //
718     } else {
719     if ( verbose ) printf(" Selftrigger: problems with event at entry %i \n",itr);
720     };
721     };
722     };
723     //
724     if ( !filled ) badevent++;
725     //
726     // Clear structures used to communicate with fortran
727     //
728     event->ClearStructs();
729     //
730     // Fill the rootple
731     //
732     calo->Fill();
733     //
734     //
735     jumpev:
736     debug = false;
737     //
738     };
739     //
740     if ( verbose ) printf("\n SUMMARY:\n");
741     if ( verbose ) printf(" Total number of events: %i \n",totevent);
742     if ( verbose ) printf(" Events with at least one track: %i \n",totevent-badevent);
743     if ( verbose ) printf(" Events without tracks: %i \n",badevent);
744     //
745     if ( badevent == totevent ){
746     if ( verbose ) printf("\n CALORIMETER - WARNING no tracks or good events in run %llu \n",idRun);
747     code = 101;
748     };
749     //
750     ei = 0;
751     //
752     // Clear variables before processing another run (needed to have always the same result when reprocessing data with the same software).
753     //
754     event->RunClose();
755     if ( l0File ) l0File->Close();
756     //
757     }; // process all the runs
758     //
759     if ( verbose ) printf("\n Finished processing data \n");
760     //
761     closeandexit:
762     //
763     if ( !reprocall && reproc && code >= 0 ){
764     if ( totfileentries > noaftrun ){
765     if ( verbose ) printf("\n Post-processing: copying events from the old tree after the processed run\n");
766     if ( verbose ) printf(" Copying %lli events in the file which are after the end of the run %llu \n",(totfileentries-noaftrun),run);
767     if ( verbose ) printf(" Start copying at event number %u end copying at event number %lli \n",noaftrun,totfileentries);
768     for (UInt_t j = noaftrun; j < totfileentries; j++ ){
769     //
770     // Get entry from old tree
771     //
772     caloclone->GetEntry(j);
773     //
774     // copy caclone to ca
775     //
776     ca = new CaloLevel2();
777     memcpy(&ca,&caclone,sizeof(caclone));
778     //
779     // Fill entry in the new tree
780     //
781     calo->Fill();
782     //
783     };
784     if ( verbose ) printf(" Finished successful copying!\n");
785     };
786     };
787     //
788     // Case of no errors: close files, delete old tree(s), write and close level2 file
789     //
790     if ( l0File ) l0File->Close();
791     if ( tempfile ) tempfile->Close();
792     gSystem->Unlink(tempname.str().c_str());
793     if ( tracker ) tracker->Delete();
794     //
795     if ( code < 0 ) printf("\n CALORIMETER - ERROR: an error occurred, try to save anyway...\n");
796     if ( verbose ) printf("\n Writing and closing rootple\n");
797     if ( runinfo ) runinfo->Close();
798     if ( calo ) calo->SetName("Calorimeter");
799     if ( file ){
800     file->cd();
801     file->Write();
802     };
803     if ( calo ) calo->Delete();
804     //
805     gSystem->Unlink(calofolder.str().c_str());
806     //
807     // the end
808     //
809     if ( verbose ) printf("\n Exiting...\n");
810     if ( code < 0 ) throw code;
811     return(code);
812     }
813    
814    
815    

  ViewVC Help
Powered by ViewVC 1.1.23