]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - VZERO/AliVZEROPreprocessor.cxx
Fix for memory leaks in digits TClonesArrays (Matevz)
[u/mrichter/AliRoot.git] / VZERO / AliVZEROPreprocessor.cxx
index 9b224841a94840bfe33066ca89cd7ede4b902a41..e95c932f3a502dd52c157856a29cc119a6d0d507 100644 (file)
@@ -1,41 +1,63 @@
 #include "AliVZEROPreprocessor.h"
 #include "AliVZEROCalibData.h"
+#include "AliVZEROTriggerData.h"
 #include "AliCDBMetaData.h"
 #include "AliCDBEntry.h"
 #include "AliDCSValue.h"
 #include "AliLog.h"
+#include "AliShuttleInterface.h"
+#include "AliVZERODataFEE.h"
+#include "AliVZERODataDCS.h"
+
 #include <TFile.h>
 #include <TTimeStamp.h>
 #include <TObjString.h>
 #include <TSystem.h>
-#include <TList.h>
 
+
+class Tlist;
+
+//
+//  This class is  a simple preprocessor for VZERO detector.
 //
-// This class is  a simple preprocessor for V0.
+//  It gets High Voltage values for a given run from DCS and Pedestal values from DAQ 
+//  and writes them as Calibration MetaData into OCDB/VZERO/Calib/Data
+//  It also retrieves FEE parameters from DCS archive   
+//  and writes them as Trigger MetaData into OCDB/VZERO/Trigger/Data 
+//  (to be used for trigger simulation)
 //
 
 ClassImp(AliVZEROPreprocessor)
 
 //______________________________________________________________________________________________
 AliVZEROPreprocessor::AliVZEROPreprocessor(AliShuttleInterface* shuttle) :
-  AliPreprocessor("V00", shuttle),
-  fData(0)
+       AliPreprocessor("V00", shuttle),
+       fData(0),
+       fFEEData(0)
  
 {
-  // constructor
+  // constructor  
+  
+  AddRunType("STANDALONE_PULSER");
+  AddRunType("STANDALONE_BC");
+  AddRunType("PHYSICS");
+    
 }
 
 //______________________________________________________________________________________________
 AliVZEROPreprocessor::~AliVZEROPreprocessor()
 {
   // destructor
+       delete fFEEData;
+       delete fData;
+       
 }
 
 //______________________________________________________________________________________________
 void AliVZEROPreprocessor::Initialize(Int_t run, UInt_t startTime,
        UInt_t endTime)
 {
-  // Creates AliZDCDataDCS object
+  // Creates AliVZERODataDCS object
 
    AliPreprocessor::Initialize(run, startTime, endTime);
   
@@ -44,10 +66,15 @@ void AliVZEROPreprocessor::Initialize(Int_t run, UInt_t startTime,
                TTimeStamp(endTime).AsString()));
 
    fRun       = run;
-   fStartTime = startTime;
-   fEndTime   = endTime;
-
-   fData      = new AliVZERODataDCS(fRun, fStartTime, fEndTime);
+   // fStartTime = startTime;
+   // fEndTime   = endTime;
+   fStartTime = GetStartTimeDCSQuery ();
+   fEndTime   = GetEndTimeDCSQuery ();
+   time_t daqStart = (time_t) (((TString)GetRunParameter("DAQ_time_start")).Atoi());
+   time_t daqEnd   = (time_t) (((TString)GetRunParameter("DAQ_time_end")).Atoi());
+   
+       fData      = new AliVZERODataDCS(fRun, fStartTime, fEndTime,(UInt_t)daqStart, (UInt_t)daqEnd);
+       fFEEData   = new AliVZERODataFEE(fRun, fStartTime, fEndTime);           
    
 }
 
@@ -67,74 +94,104 @@ UInt_t AliVZEROPreprocessor::Process(TMap* dcsAliasMap)
   TString fileName; 
   AliVZEROCalibData *calibData = new AliVZEROCalibData();
   
-  // *************** From DCS ******************
+  // *************** HV From DCS ******************
   // Fills data into a AliVZERODataDCS object
   if(!dcsAliasMap) return 1;
 
-       // The processing of the DCS input data is forwarded to AliVZERODataDCS
-
+       // The Processing of the DCS input data is forwarded to AliVZERODataDCS
        fData->ProcessData(*dcsAliasMap);
-       //fData->Draw("");              // Draws the HV values as a function of time
-       //dcsAliasMap->Print("");       // Prints out the HV values
 
-       // Writes VZERO PMs HV values into VZERO calibration object
-       calibData->SetMeanHV(fData->GetMeanHV());
-       calibData->SetWidthHV(fData->GetWidthHV());
-    
+       // Writes VZERO PMs HV values into VZERO calibration object and Timing resolution parameters
+       calibData->FillDCSData(fData);
+          
    // *************** From DAQ ******************
    
-       TString SourcesId = "CALIB";
+       TString sourcesId = "V00da_results";
 
-       TList* sourceList = GetFileSources(kDAQ, SourcesId.Data());
+       TList* sourceList = GetFileSources(kDAQ, sourcesId.Data());
        if (!sourceList)  {
-               Log(Form("No sources found for id %s", SourcesId.Data()));                      
+               Log(Form("No sources found for id %s", sourcesId.Data()));                      
                return 1; }
-       Log(Form("The following sources produced files with the id %s",SourcesId.Data()));
+       Log(Form("The following sources produced files with the id %s",sourcesId.Data()));
        sourceList->Print();    
 
        TIter iter(sourceList);
        TObjString *source = 0;
                
        while((source=dynamic_cast<TObjString*> (iter.Next()))){
-               fileName = GetFile(kDAQ, SourcesId.Data(), source->GetName());
+               fileName = GetFile(kDAQ, sourcesId.Data(), source->GetName());
                if (fileName.Length() > 0)
                Log(Form("Got the file %s, now we can extract some values.", fileName.Data()));
                FILE *file;
                if((file = fopen(fileName.Data(),"r")) == NULL){
                                   Log(Form("Cannot open file %s",fileName.Data()));
                                   return 1;}
-               Float_t Pedestals[128], Sigmas[128], Gains[128];
-               for(Int_t j=0; j<128; j++)fscanf(file,"%f %f %f ",
-                                         &Pedestals[j], &Sigmas[j], &Gains[j]);
+               Float_t pedMean[128], pedSigma[128], adcMean[128], adcSigma[128] ;
+               for(Int_t j=0; j<128; j++)fscanf(file,"%f %f %f %f",
+                                         &pedMean[j], &pedSigma[j], &adcMean[j], &adcSigma[j]);
                fclose(file);
                
-               calibData->SetPedestal(Pedestals);
-               calibData->SetSigma(Sigmas);                    
-               calibData->SetGain(Gains); }                            
-               
-       delete sourceList; 
+               calibData->SetPedestal(pedMean);
+               calibData->SetSigma(pedSigma);                  
+               calibData->SetGain(adcMean); 
+               calibData->SetADCsigma(adcSigma);
+               }                               
+
        delete source;      
   
   // Check that everything was properly transmitted
 
-//   for(Int_t j=0; j<128; j++){printf("ADCPedestal[%d] -> %f \n",j,calibData->GetPedestal(j));}
-//   for(Int_t j=0; j<128; j++){printf("ADCGain[%d] -> %f \n",j,calibData->GetGain(j));}
-//   for(Int_t j=0; j<128; j++){printf("ADCSigma[%d] -> %f \n",j,calibData->GetSigma(j));}
+//   for(Int_t j=0; j<128; j++){printf("Pedestal[%d] -> %f \n",j,calibData->GetPedestal(j));}
+//   for(Int_t j=0; j<128; j++){printf("pedSigma[%d] -> %f \n",j,calibData->GetSigma(j));}
+//   for(Int_t j=0; j<128; j++){printf("Gain[%d] -> %f \n",j,calibData->GetGain(j));}
+//   for(Int_t j=0; j<128; j++){printf("adcSigma[%d] -> %f \n",j,calibData->GetADCsigma(j));}
 //   for(Int_t j=0; j<64; j++){printf("MeanHV[%d] -> %f \n",j,calibData->GetMeanHV(j));}
 //   for(Int_t j=0; j<64; j++){printf("WidthHV[%d] -> %f \n",j,calibData->GetWidthHV(j));}
   
   // Now we store the VZERO Calibration Object into CalibrationDB
+
+  Bool_t resECal=kTRUE;
   
+  Bool_t result = 0;
+//  if(sourceList && sourceList->GetEntries()>0)
+//  {
   AliCDBMetaData metaData;
   metaData.SetBeamPeriod(0);
   metaData.SetResponsible("Brigitte Cheynis");
   metaData.SetComment("This preprocessor fills an AliVZEROCalibData object");
 
-  Bool_t result = Store("Calib", "Data", calibData, &metaData, 0, kTRUE);
+  resECal = Store("Calib", "Data", calibData, &metaData, 0, kTRUE);
+//  }
+  if(resECal==kFALSE ) result = 1;
+  
 
   delete calibData;
-
-  if (!result) return 1;   
-  return 0;
+  delete sourceList; 
+
+ // -----------------------------------------------------------------------
+ // Retrieves Front End Electronics Parameters from  DCS archive
+ // -----------------------------------------------------------------------
+       AliVZEROTriggerData *triggerData = new AliVZEROTriggerData();
+
+       // The processing of the DCS input data is forwarded to AliVZERODataFEE
+       fFEEData->ProcessData(*dcsAliasMap);
+
+       // Writes VZERO FEE parameters values into VZERO  Trigger parametrization object
+       triggerData->FillData(fFEEData);
+
+       // Stores the VZERO Trigger Object into TriggerDB
+       
+       resECal=kTRUE;
+       
+       result = 0;
+       metaData.SetBeamPeriod(0);
+       metaData.SetResponsible("Brigitte Cheynis");
+       metaData.SetComment("This preprocessor fills an AliVZEROTriggerData object");
+       
+       resECal = Store("Trigger", "Data", triggerData, &metaData, 0, kTRUE);
+       if(resECal==kFALSE ) result = 1;
+       
+       
+  return result;
 }