/[PAMELA software]/DarthVader/S4Level2/src/S4Core.cpp
ViewVC logotype

Diff of /DarthVader/S4Level2/src/S4Core.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.7 by mocchiut, Thu Nov 9 17:05:47 2006 UTC revision 1.14 by mocchiut, Thu Apr 19 08:12:39 2007 UTC
# Line 1  Line 1 
1  //  //
2    // Given a calibration and a data file this program create an ntuple with LEVEL2 S4 variables
3    //
4    //
5  // C/C++ headers  // C/C++ headers
6  //  //
7  #include <fstream>  #include <fstream>
# Line 29  Line 32 
32  #include <stdlib.h>  #include <stdlib.h>
33  #include <math.h>  #include <math.h>
34  //  //
35    // RunInfo header
36    //
37    #include <RunInfo.h>
38    #include <GLTables.h>
39    //
40  // YODA headers  // YODA headers
41  //  //
42  #include <PamelaRun.h>  #include <PamelaRun.h>
# Line 37  Line 45 
45  #include <EventHeader.h>  #include <EventHeader.h>
46  #include <CalibS4Event.h>  #include <CalibS4Event.h>
47  #include <physics/S4/S4Event.h>  #include <physics/S4/S4Event.h>
 //#include <yodaUtility.h>  
 //  
 // RunInfo header  
 //  
 #include <RunInfo.h>  
 #include <GLTables.h>  
48  //  //
49  // This program headers  // This program headers
50  //  //
51  #include <S4Level2.h>  #include <S4Level2.h>
52  #include <S4Core.h>  #include <S4Core.h>
53  #include <S4Verl2.h>  #include <S4Verl2.h>
   
 using namespace std;  
   
 //  
54  //  //
55    using namespace std;
56  //  //
57  /*  /*
58   * Fit function Received from Valeria Malvezzi 06/02/2006   * Fit function Received from Valeria Malvezzi 06/02/2006
# Line 72  TArrayD *S4_paramfit(UInt_t atime, TSQLS Line 71  TArrayD *S4_paramfit(UInt_t atime, TSQLS
71    //    //
72    GL_S4_CALIB *glS4calib = new GL_S4_CALIB();    GL_S4_CALIB *glS4calib = new GL_S4_CALIB();
73    //    //
74      if ( !dbc->IsConnected() ) throw -504;
75    glS4calib->Query_GL_S4_CALIB(atime, dbc);    glS4calib->Query_GL_S4_CALIB(atime, dbc);
76    //    //
77    GL_ROOT *glroot = new GL_ROOT();    GL_ROOT *glroot = new GL_ROOT();
78      if ( !dbc->IsConnected() ) throw -504;
79    glroot->Query_GL_ROOT(glS4calib->ID_ROOT_L0,dbc);    glroot->Query_GL_ROOT(glS4calib->ID_ROOT_L0,dbc);
80    //    //
81    stringstream ftmpname;    stringstream ftmpname;
# Line 100  TArrayD *S4_paramfit(UInt_t atime, TSQLS Line 101  TArrayD *S4_paramfit(UInt_t atime, TSQLS
101    //    //
102    tr->GetEntry(glS4calib->EV_ROOT);    tr->GetEntry(glS4calib->EV_ROOT);
103    //    //
104    //----------- variable initialization -------------------------------------------------    // Variables initialization
105    //    //
106    Double_t mip[3]={1, 30, 300};    Double_t mip[3]={1, 30, 300};
107    Double_t adc[3] = {0.,0.,0.};    Double_t adc[3] = {0.,0.,0.};
108    //    //
109    //------------ Fit calibrations and find parameters to calibrate data ------------------    // Fit calibrations and find parameters to calibrate data
110    //    //
111    pamela::S4::S4Event  *s4Record = 0;    pamela::S4::S4Event  *s4Record = 0;
112    //    //
# Line 134  TArrayD *S4_paramfit(UInt_t atime, TSQLS Line 135  TArrayD *S4_paramfit(UInt_t atime, TSQLS
135    adc[2]=adc[2]/128;      adc[2]=adc[2]/128;  
136    //  if ( IsDebug() ) printf(" adc1 = %g adc2 = %g adc3 = %g\n",adc[0],adc[1],adc[2]);    //  if ( IsDebug() ) printf(" adc1 = %g adc2 = %g adc3 = %g\n",adc[0],adc[1],adc[2]);
137    TGraph *fitpar = new TGraph (3, adc, mip);    TGraph *fitpar = new TGraph (3, adc, mip);
138    TF1 *func = new TF1("fitf", fitf, -1., 400., 2); // definizione della funzione, 2 = num. parametri    TF1 *func = new TF1("fitf", fitf, -1., 400., 2); // function definition with 2 parameters
   //  TF1 *func = new TF1("fitf", fitf, -0., 1000., 2); // definizione della funzione, 2 = num. parametri  
139    //      //  
140    func->SetParameters(0.3,1.);        //inizializzazione dei parametri a 1    func->SetParameters(0.3,1.); // parameters initialization to 1
141    func->SetParNames("m","q");      //definisce il nome dei parametri    func->SetParNames("m","q"); //parameter's name
142    fitpar->Fit(func,"qr");          //fitta fitpar con la funzione func nel range definito nella funzione    fitpar->Fit(func,"qr"); //function fit
   //fitpar->Fit(func,"r");          //fitta fitpar con la funzione func nel range definito nella funzione  
143    parametri->AddAt(func->GetParameter(0),0);    parametri->AddAt(func->GetParameter(0),0);
144    parametri->AddAt(func->GetParameter(1),1);    parametri->AddAt(func->GetParameter(1),1);
145    //  if ( parametri[0] < 0. || parametri[0] > 0.5 || parametri[1] < 0.7 || parametri[1] > 1.1 ) valid = 0;    //  if ( parametri[0] < 0. || parametri[0] > 0.5 || parametri[1] < 0.7 || parametri[1] > 1.1 ) valid = 0;
# Line 159  TArrayD *S4_paramfit(UInt_t atime, TSQLS Line 158  TArrayD *S4_paramfit(UInt_t atime, TSQLS
158  //  //
159  //  //
160  int S4Core(UInt_t run, TFile *file, TSQLServer *dbc, Int_t S4argc, char *S4argv[]){  int S4Core(UInt_t run, TFile *file, TSQLServer *dbc, Int_t S4argc, char *S4argv[]){
   Int_t i = 0;  
161    //    //
162    TString processFolder = "S4Folder";    // Set these to true to have a verbose output.
163    //    //
164    Bool_t debug = false;    Bool_t debug = false;
   //  
165    Bool_t verbose = false;    Bool_t verbose = false;
166    //        //    
167      //
168      // Output directory is the working directoy.
169      //
170      const char* outDir = gSystem->DirName(gSystem->DirName(file->GetPath()));
171      //
172      Int_t i = 0;
173      TString processFolder = Form("S4Folder_%u",run);
174    if ( S4argc > 0 ){    if ( S4argc > 0 ){
175      i = 0;      i = 0;
176      while ( i < S4argc ){      while ( i < S4argc ){
# Line 179  int S4Core(UInt_t run, TFile *file, TSQL Line 183  int S4Core(UInt_t run, TFile *file, TSQL
183        };        };
184        if ( (!strcmp(S4argv[i],"--debug")) || (!strcmp(S4argv[i],"-g"))) {        if ( (!strcmp(S4argv[i],"--debug")) || (!strcmp(S4argv[i],"-g"))) {
185          verbose = true;          verbose = true;
186            debug = true;
187        };        };
188        if ( (!strcmp(S4argv[i],"--verbose")) || (!strcmp(S4argv[i],"-v"))) {        if ( (!strcmp(S4argv[i],"--verbose")) || (!strcmp(S4argv[i],"-v"))) {
189          verbose = true;          verbose = true;
# Line 186  int S4Core(UInt_t run, TFile *file, TSQL Line 191  int S4Core(UInt_t run, TFile *file, TSQL
191        i++;        i++;
192      };      };
193    };    };
   //  
   const char* outDir = gSystem->DirName(gSystem->DirName(file->GetPath()));  
   //  
194    // Variables for level2    // Variables for level2
195    //    //
196    TTree *S4tr = 0;    TTree *S4tr = 0;
197    UInt_t nevents = 0;    UInt_t nevents = 0;
198    //    //
199    // variables needed to reprocess data    // Variables needed to reprocess data
200      //
201      Long64_t maxsize = 10000000000LL;  
202      TTree::SetMaxTreeSize(maxsize);
203    //    //
204    TString S4version;    TString S4version;
205    ItoRunInfo *runinfo = 0;    ItoRunInfo *runinfo = 0;
# Line 341  int S4Core(UInt_t run, TFile *file, TSQL Line 346  int S4Core(UInt_t run, TFile *file, TSQL
346      //      //
347      // tree exists, we are reprocessing data. Are we reprocessing a single run or all the file?      // tree exists, we are reprocessing data. Are we reprocessing a single run or all the file?
348      //      //
349        S4trclone->SetAutoSave(900000000000000LL);
350      reproc = true;      reproc = true;
351      //      //
352      // update versioning information      // update versioning information
# Line 385  int S4Core(UInt_t run, TFile *file, TSQL Line 391  int S4Core(UInt_t run, TFile *file, TSQL
391    //    //
392    file->cd();    file->cd();
393    S4tr = new TTree("S4-new","PAMELA Level2 S4 data");    S4tr = new TTree("S4-new","PAMELA Level2 S4 data");
394      S4tr->SetAutoSave(900000000000000LL);
395    S4tr->Branch("S4Level2","S4Level2",&s4);    S4tr->Branch("S4Level2","S4Level2",&s4);
396    //    //
397    if ( reproc && !reprocall ){    if ( reproc && !reprocall ){
# Line 393  int S4Core(UInt_t run, TFile *file, TSQL Line 400  int S4Core(UInt_t run, TFile *file, TSQL
400      //      //
401      tempfile = new TFile(tempname.str().c_str(),"READ");      tempfile = new TFile(tempname.str().c_str(),"READ");
402      S4trclone = (TTree*)tempfile->Get("S4-old");      S4trclone = (TTree*)tempfile->Get("S4-old");
403        S4trclone->SetAutoSave(900000000000000LL);
404      S4trclone->SetBranchAddress("S4Level2",&s4clone);      S4trclone->SetBranchAddress("S4Level2",&s4clone);
405      //            //      
406      if ( nobefrun > 0 ){      if ( nobefrun > 0 ){
# Line 461  int S4Core(UInt_t run, TFile *file, TSQL Line 469  int S4Core(UInt_t run, TFile *file, TSQL
469      //      //
470      // prepare the timesync for the db      // prepare the timesync for the db
471      //      //
472        if ( !dbc->IsConnected() ) throw -504;
473      dbtime = new GL_TIMESYNC(runinfo->ID_ROOT_L0,"ID",dbc);      dbtime = new GL_TIMESYNC(runinfo->ID_ROOT_L0,"ID",dbc);
474      //      //
475      // Search in the DB the path and name of the LEVEL0 file to be processed.      // Search in the DB the path and name of the LEVEL0 file to be processed.
476      //      //
477        if ( !dbc->IsConnected() ) throw -504;
478      glroot->Query_GL_ROOT(runinfo->ID_ROOT_L0,dbc);      glroot->Query_GL_ROOT(runinfo->ID_ROOT_L0,dbc);
479      //      //
480      ftmpname.str("");      ftmpname.str("");

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.14

  ViewVC Help
Powered by ViewVC 1.1.23