1 |
// |
// |
2 |
// Check the calorimter calibrations - Emiliano Mocchiutti |
// Check the calorimter calibrations - Emiliano Mocchiutti |
3 |
// |
// |
4 |
// FCaloCHKCALIB.c version 1.01 (2006-03-02) |
// FCaloCHKCALIB.c version 1.02 (2006-03-13) |
5 |
// |
// |
6 |
// The only input needed is the path to the directory created by YODA for the data file you want to analyze. |
// The only input needed is the path to the directory created by YODA for the data file you want to analyze. |
7 |
// |
// |
8 |
// Changelog: |
// Changelog: |
9 |
// |
// |
10 |
|
// 1.01 - 1.02 (2006-03-13): Include files from YODA without "event" directory. |
11 |
|
// |
12 |
// 1.00 - 1.01 (2006-03-02): Works on YODA v6 output (single file), does not require anymore calocommon package. |
// 1.00 - 1.01 (2006-03-02): Works on YODA v6 output (single file), does not require anymore calocommon package. |
13 |
// |
// |
14 |
// 0.00 - 1.00 (2006-03-02): Clone of CaloCHKCALIB.c |
// 0.00 - 1.00 (2006-03-02): Clone of CaloCHKCALIB.c |
29 |
#include <TPad.h> |
#include <TPad.h> |
30 |
#include <TPaveLabel.h> |
#include <TPaveLabel.h> |
31 |
#include <TStyle.h> |
#include <TStyle.h> |
32 |
|
#include <TSystem.h> |
33 |
// |
// |
34 |
#include <event/CalibCalPedEvent.h> |
#include <CalibCalPedEvent.h> |
35 |
// |
// |
36 |
using namespace std; |
using namespace std; |
37 |
// |
// |
109 |
ifstream myfile; |
ifstream myfile; |
110 |
myfile.open(filename.Data()); |
myfile.open(filename.Data()); |
111 |
if ( !myfile ){ |
if ( !myfile ){ |
112 |
printf(" No such file, exiting...\n"); |
printf(" %s :no such file, exiting...\n\n",filename.Data()); |
113 |
return; |
return; |
114 |
}; |
}; |
115 |
myfile.close(); |
myfile.close(); |
116 |
// |
// |
117 |
TFile *File = new TFile(filename.Data()); |
TFile *File = new TFile(filename.Data()); |
118 |
// |
// |
119 |
TTree *tr = (TTree*)File->Get("CalibCalPed"); |
TTree *tr = (TTree*)File->Get("CalibCalPed"); |
120 |
|
if ( !tr ) { |
121 |
|
printf(" CalibCalPed : no such tree in %s \n",filename.Data()); |
122 |
|
printf(" Exiting, are you sure this is a LEVEL0 not corrupted file? \n\n"); |
123 |
|
return; |
124 |
|
}; |
125 |
pamela::CalibCalPedEvent *ce = 0; |
pamela::CalibCalPedEvent *ce = 0; |
126 |
// |
// |
127 |
UInt_t found; |
UInt_t found; |