| 1 |
// |
// |
| 2 |
// Check for possible errors and shows raw distribution of variables coming from the DSP (no calibrations needed) - Emiliano Mocchiutti |
// Check for possible errors and shows raw distribution of variables coming from the DSP (no calibrations needed) - Emiliano Mocchiutti |
| 3 |
// |
// |
| 4 |
// FCaloQLOOK.c version 1.01 (2006-02-28) |
// FCaloQLOOK.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-02-28): Works on YODA v6 output (single file), does not require anymore calocommon package. |
// 1.00 - 1.01 (2006-02-28): Works on YODA v6 output (single file), does not require anymore calocommon package. |
| 13 |
// |
// |
| 14 |
// 0.00 - 1.00 (2006-02-28): Clone of CaloQLOOK.c (ground software). |
// 0.00 - 1.00 (2006-02-28): Clone of CaloQLOOK.c (ground software). |
| 27 |
#include <TPad.h> |
#include <TPad.h> |
| 28 |
#include <TPolyLine.h> |
#include <TPolyLine.h> |
| 29 |
#include <TStyle.h> |
#include <TStyle.h> |
| 30 |
|
#include <TSystem.h> |
| 31 |
// |
// |
| 32 |
#include <event/PamelaRun.h> |
#include <PamelaRun.h> |
| 33 |
#include <event/physics/calorimeter/CalorimeterEvent.h> |
#include <physics/calorimeter/CalorimeterEvent.h> |
| 34 |
// |
// |
| 35 |
#include <FCaloQLOOKfun.h> |
#include <FCaloQLOOKfun.h> |
| 36 |
// |
// |
| 75 |
ifstream myfile; |
ifstream myfile; |
| 76 |
myfile.open(filename.Data()); |
myfile.open(filename.Data()); |
| 77 |
if ( !myfile ){ |
if ( !myfile ){ |
| 78 |
printf(" No such file, exiting...\n"); |
printf(" %s :no such file, exiting...\n\n",filename.Data()); |
| 79 |
return; |
return; |
| 80 |
}; |
}; |
| 81 |
myfile.close(); |
myfile.close(); |
| 82 |
// |
// |
| 83 |
TFile *File = new TFile(filename.Data()); |
TFile *File = new TFile(filename.Data()); |
| 84 |
TTree *tr = (TTree*)File->Get("Physics"); |
TTree *tr = (TTree*)File->Get("Physics"); |
| 85 |
|
if ( !tr ) { |
| 86 |
|
printf(" Physics : no such tree in %s \n",filename.Data()); |
| 87 |
|
printf(" Exiting, are you sure this is a LEVEL0 not corrupted file? \n\n"); |
| 88 |
|
return; |
| 89 |
|
}; |
| 90 |
// |
// |
| 91 |
// Define variables |
// Define variables |
| 92 |
// |
// |