]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
working version of preprocessor
authoralla <alla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 20 Feb 2008 14:37:28 +0000 (14:37 +0000)
committeralla <alla@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 20 Feb 2008 14:37:28 +0000 (14:37 +0000)
T0/AliT0CalibTimeEq.cxx
T0/AliT0CalibWalk.cxx
T0/AliT0CalibWalk.h
T0/AliT0Preprocessor.cxx
T0/TestPreprocessor.C

index d950d5b6fb7f9cdec1faf92ae36f51e4aed444ba..0ad81ca166b81bc4af1b8b4225754b653f284ee2 100644 (file)
@@ -101,22 +101,23 @@ void  AliT0CalibTimeEq::Print(Option_t*) const
 void AliT0CalibTimeEq::ComputeOnlineParams(const char* filePhys)
 {
   // compute online equalized time
-  Int_t npeaks = 20;
-  Double_t sigma = 4.;
+//  Int_t npeaks = 20;
+//  Double_t sigma = 4.;
 
   TFile *gFile = TFile::Open(filePhys);
-  Bool_t down=false;
-  Int_t index[20];
+//  Bool_t down=false;
+//  Int_t index[20];
   Char_t buf1[15];
-  Char_t temp[10];
-  Float_t p[24][3]={0.,0.,0.};
+//  Char_t temp[10];
+//  Float_t p[24][3]={0.,0.,0.};
   for (Int_t i=0; i<24; i++)
   {
-    sprintf(buf1,"CFD1-CFD%i",i+1);
+    sprintf(buf1,"CFD1-CFD%d",i+1);
     TH1F *cfd = (TH1F*) gFile->Get(buf1);
-    printf(" i = %d buf1 = %s\n", i, buf1);
+    //    printf(" i = %d buf1 = %s\n", i, buf1);
     Double_t mean=cfd->GetMean();
     SetTimeEq(i,mean);
+    delete cfd;
   }
     /*
 
index 130b3ca35f2a5d3271049db7d8b7871086240276..6df8cdb582b4db99e261dc9268c3cee419958833 100644 (file)
@@ -179,10 +179,9 @@ void AliT0CalibWalk::MakeWalkCorrGraph(const char *laserFile)
   //make walk corerction for preprocessor
 
   TFile *gFile = TFile::Open(laserFile);
-  //gSystem->Load("libSpectrum");
  
   Int_t npeaks = 20;
-  Int_t sigma=3.;
+  Double_t sigma=3.;
   Bool_t down = false;
 
   Int_t index[20];
@@ -198,12 +197,11 @@ void AliT0CalibWalk::MakeWalkCorrGraph(const char *laserFile)
       sprintf(buf2,"CFD_QTC%i",i+1);
       sprintf(buf3,"CFD_LED%i",i+1);
       cout<<buf1<<" "<<buf2<<" "<<buf3<<endl;
-      TH2F *qtc_cfd = (TH2F*) gFile->Get(buf2);
-      TH2F *led_cfd = (TH2F*) gFile->Get(buf3);
+      TH2F *qtcVScfd = (TH2F*) gFile->Get(buf2);
+      TH2F *ledVScfd = (TH2F*) gFile->Get(buf3);
       TH1F *cfd = (TH1F*) gFile->Get(buf1);
-      //       cfd->Draw();
       TSpectrum *s = new TSpectrum(2*npeaks,1);
-      Int_t nfound = s->Search(cfd,sigma," ",0.05);
+      Int_t nfound = s->Search(cfd,sigma,"goff",0.05);
       cout<<"Found "<<nfound<<" peaks sigma "<<sigma<<endl;;
       if(nfound!=0){
        Float_t *xpeak = s->GetPositionX();
@@ -215,20 +213,14 @@ void AliT0CalibWalk::MakeWalkCorrGraph(const char *laserFile)
        Float_t hmax = xp+10*sigma;
        Float_t hmin = xp-10*sigma;
        cout<<hmin<< " "<<hmax<<endl;
-       //          cfd->GetXaxis()->SetRange(hmin,hmax);
-       //          TF1 *g1 = new TF1("g1", "gaus", hmin, hmax);
-       // cfd->Fit("g1","R");
-       //      Int_t hminbin=  qtc_cfd->GetXaxis()->GetFirst();
-       //      Int_t hmaxbin=  qtc_cfd->GetXaxis()->GetLast();
-       Int_t nbins= qtc_cfd->GetXaxis()->GetNbins();
+
+       //QTC
+       Int_t nbins= qtcVScfd->GetXaxis()->GetNbins();
        cout<<" nbins "<<nbins<<endl;
-       //      cout<<"  qtc_cfd "<<hminbin<<" "<<hmaxbin<<" "<<nbins<<endl;
-       //  qtc_cfd->Draw();
-       TProfile *pr_y = qtc_cfd->ProfileX();
-       //      Float_t maxHr=pr_y->GetBinCenter(hmaxbin);
+       TProfile *prY = qtcVScfd->ProfileX();
        
-       pr_y->SetMaximum(hmax);
-       pr_y->SetMinimum(hmin);
+       prY->SetMaximum(hmax);
+       prY->SetMinimum(hmin);
        Int_t np=nbins/20;
        Double_t *xx = new Double_t[np];
        Double_t *yy = new Double_t[np];
@@ -237,33 +229,28 @@ void AliT0CalibWalk::MakeWalkCorrGraph(const char *laserFile)
        for (Int_t ip=1; ip<nbins; ip++)
          {
            if(ip%20 != 0 ) {
-             if (pr_y->GetBinContent(ip) !=0)
-               yg +=pr_y->GetBinContent(ip);
-             //        cout<<ng<<" "<<pr_y->GetBinContent(ip)<<" "<<yg<<endl;
+             if (prY->GetBinContent(ip) !=0)
+               yg +=prY->GetBinContent(ip);
              ng++;}
            else {
-             xx[ip/20] = Float_t (pr_y->GetBinCenter(ip));
+             xx[ip/20] = Float_t (prY->GetBinCenter(ip));
              yy[ip/20] = yg/ng;
              yg=0;
              ng=0;
-             //                      cout<<ip<<" "<<ip/20<<" "<< xx[ip/20]<<" "<< yy[ip/20]<<endl;
            }
          }
        TGraph *gr = new TGraph(np,xx,yy);
        gr->SetMinimum(hmin);
        gr->SetMaximum(hmax);
        fWalk.AddAtAndExpand(gr,i);       
-       //      fWalk.AddAtAndExpand(gr,i+12);
 
-       Int_t nbinsled= led_cfd->GetXaxis()->GetNbins();
+       //LED
+       Int_t nbinsled= ledVScfd->GetXaxis()->GetNbins();
        cout<<" nbins led "<<nbinsled<<endl;
-       //      cout<<"  qtc_cfd "<<hminbin<<" "<<hmaxbin<<" "<<nbins<<endl;
-       //  qtc_cfd->Draw();
-       TProfile *prled_y = led_cfd->ProfileX();
-       //      Float_t maxHr=pr_y->GetBinCenter(hmaxbin);
+       TProfile *prledY = ledVScfd->ProfileX();
        
-       prled_y->SetMaximum(hmax);
-       prled_y->SetMinimum(hmin);
+       prledY->SetMaximum(hmax);
+       prledY->SetMinimum(hmin);
        Int_t npled=nbinsled/20;
        Double_t *xxled = new Double_t[np];
        Double_t *yyled = new Double_t[np];
@@ -272,12 +259,11 @@ void AliT0CalibWalk::MakeWalkCorrGraph(const char *laserFile)
        for (Int_t ip=1; ip<nbinsled; ip++)
          {
            if(ip%20 != 0 ) {
-             if (prled_y->GetBinContent(ip) !=0)
-               ygled +=prled_y->GetBinContent(ip);
-             //        cout<<ng<<" "<<pr_y->GetBinContent(ip)<<" "<<yg<<endl;
+             if (prledY->GetBinContent(ip) !=0)
+               ygled +=prledY->GetBinContent(ip);
              ngled++;}
            else {
-             xxled[ip/20] = Float_t (prled_y->GetBinCenter(ip));
+             xxled[ip/20] = Float_t (prledY->GetBinCenter(ip));
              yyled[ip/20] = ygled/ngled;
              ygled=0;
              ngled=0;
@@ -287,14 +273,19 @@ void AliT0CalibWalk::MakeWalkCorrGraph(const char *laserFile)
        grled->SetMinimum(hmin);
        grled->SetMaximum(hmax);
        fAmpLEDRec.AddAtAndExpand(grled,i);       
-       //      delete [] xx;
-       //      delete [] yy;
+
+       delete [] xx;
+       delete [] yy;
+       delete [] xxled;
+       delete [] yyled;
+       delete prY;
+       delete prledY;
        
       }
-      
+      delete cfd;
+      delete qtcVScfd;
+      delete ledVScfd;
     }
   
-
-
 }
 
index cab5f2810f0480c4f68ed1b10405a8e8d07542b9..41f131f4b9b3630feded3f031cd8c9e457925154 100644 (file)
@@ -22,7 +22,7 @@ class AliT0CalibWalk: public TNamed {
   virtual ~AliT0CalibWalk();
   
   
-  TGraph *GetWalk(Int_t ipmt )  const {return ((TGraph*)fWalk.At(ipmt));}
+  TGraph *GetWalk(Int_t ipmt )  const {return (TGraph*)fWalk.At(ipmt);}
   Float_t  GetWalkVal(Int_t ipmt, Float_t mv )  const {return ((TGraph*)fWalk.At(ipmt))->Eval(mv);}
   void SetWalk(Int_t ipmt) ;
   void MakeWalkCorrGraph(const char *laserFile);
index eee1d9e574b58069b21e541b8531216ceaf1d64c..283682aa7b1c4d3c87d5bdac1cfc70ed2bc5405c 100644 (file)
@@ -105,7 +105,7 @@ UInt_t AliT0Preprocessor::Process(TMap* dcsAliasMap )
         }
         else
         {
-         /*
+        /* 
           resultDCSMap=fData->ProcessData(*dcsAliasMap);
           if(!resultDCSMap)
           {
@@ -114,14 +114,12 @@ UInt_t AliT0Preprocessor::Process(TMap* dcsAliasMap )
           }
           else
           {
-           Float_t *meanScaler[24] = fData->GetScalerMean();
-               
             AliCDBMetaData metaDataDCS;
             metaDataDCS.SetBeamPeriod(0);
             metaDataDCS.SetResponsible("Tomasz Malkiewicz");
             metaDataDCS.SetComment("This preprocessor fills an AliTODataDCS object.");
             AliInfo("Storing DCS Data");
-            resultDCSStore = Store("Calib","DCSData",meanScaler, &metaDataDCS);
+            resultDCSStore = Store("Calib","DCSData",fData, &metaDataDCS);
             if (!resultDCSStore)
             {
               Log("Some problems occurred while storing DCS data results in ReferenceDB");
index c3d0450a939667fcc24722f0e495aecd96ac09d5..cf17aa8c25ce4e607e60d305c1c4b56318ceaee6 100644 (file)
@@ -17,11 +17,11 @@ void TestPreprocessor()
 
   shuttle->SetDCSInput(dcsAliasMap);
 
-  shuttle->SetInputRunType("T0_STANDALONE_LASER");
+  //shuttle->SetInputRunType("STANDALONE");
 
   shuttle->AddInputFile(AliTestShuttle::kDAQ, "T00", "LASER", "LDC0","daLaser.root");
  
-  //shuttle->SetInputRunType("PHYSICS");
+  shuttle->SetInputRunType("PHYSICS");
 
   shuttle->AddInputFile(AliTestShuttle::kDAQ, "T00", "PHYSICS", "LDC0", "daPhys.root");