]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ANALYSIS/AliPhysicsSelection.h
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / ANALYSIS / AliPhysicsSelection.h
index 21e1eb3306e0f9733b02dfc475f5a6e44d51c332..da254272459283a24628eeb97e17bef1e66007af 100644 (file)
 // and background rejection based on the content of the ESD
 //
 //   Origin: Jan Fiete Grosse-Oetringhaus, CERN
+//           Michele Floris, CERN
 //-------------------------------------------------------------------------
 
 #include <AliAnalysisCuts.h>
 #include <TList.h>
 #include "TObjString.h"
+#include "AliVEvent.h"
+#include "AliLog.h"
+#include "AliAnalysisManager.h"
+
+//#define VERBOSE_STAT
 
 class AliESDEvent;
 class TH2F;
+class TH1F;
 class TCollection;
 class AliTriggerAnalysis;
 class AliAnalysisTaskSE;
+class AliOADBPhysicsSelection ;
+class AliOADBFillingScheme    ;
+class AliOADBTriggerAnalysis;
+class TPRegexp;
 
 class AliPhysicsSelection : public AliAnalysisCuts
 {
+public:
 
-  enum {kStatTriggerClass=1,kStatHWTrig,kStatV0ABG,kStatV0CBG,kStatMB1,kStatMB1Prime,kStatFMD,kStatFO1,kStatFO2,kStatV0A,kStatV0C,kStatSSD1,kStatFO1AndV0,kStatV0,kStatAny2Hits,kStatOffline,kStatBG,kStatAccepted};
+public:
+  enum {kStatTriggerClass=1,kStatHWTrig,kStatV0ABG,kStatV0CBG,kStatMB1,kStatMB1Prime,kStatLaserCut,kHVdipCut,kStatFO1,kStatFO2,kStatFO2L1,kStatV0A,kStatV0C, kStatT0BB, kStatT0BG, kStatT0PileUp, kStatZDCA,kStatZDCC,kStatZDCAC,kStatZDCTime,kStatZNABG,kStatZNCBG,kStatV0,kStatV0ZN,kStatOffline,kStatBG, kStatAcceptedPileUp, kStatAccepted};
 
 #ifdef VERBOSE_STAT
-  enum {kStatRowBG=5,kStatRowAcc,kStatRowBGFrac,kStatRowAccFrac,kStatRowErrGood,kStatRowFracGood,kStatRowGood};
+  enum {kStatRowAllB=0, kStatRowAllAC, kStatRowAllE, kStatRowBG,kStatRowAcc,kStatRowBGFrac,kStatRowAccFrac,kStatRowErrGoodFrac,kStatRowGoodFrac,kStatRowErrGood,kStatRowGood}; // offset wrt fBGStatOffset
 #else
-  enum {kStatRowBG=5,kStatRowAcc,kStatRowGood};
+  enum {kStatRowAllB=0, kStatRowAllAC, kStatRowAllE, kStatRowBG, kStatRowAcc,kStatRowGood}; // offset wrt fBGStatOffset
 #endif
 
   enum {kStatIdxAll=0,kStatIdxBin0=1};
+  enum ETriggerLogic { kCINT1 = 0, kCMBS2A, kCMBS2C, kCMBAC, kCMBACS2, kHighMultL1 };
 
-
-public:
   typedef Bool_t (*Bin0Callback_t)(const AliESDEvent *);
 
   AliPhysicsSelection();
   virtual ~AliPhysicsSelection();
     
   // AliAnalysisCuts interface
-  virtual Bool_t IsSelected(TObject* obj) { return IsCollisionCandidate((const AliESDEvent*) obj); }
+  virtual UInt_t GetSelectionMask(const TObject* obj) { return IsCollisionCandidate((const AliESDEvent*) obj); }
   virtual Bool_t IsSelected(TList*) { return kFALSE; }
+  virtual Bool_t IsSelected(TObject*)  {return kFALSE;}
     
-  Bool_t IsCollisionCandidate(const AliESDEvent* aEsd);
+  Int_t  GetCurrentRun() const {return fCurrentRun;}
+  UInt_t IsCollisionCandidate(const AliESDEvent* aEsd);
+  Bool_t Initialize(const AliESDEvent* aEsd);
   Bool_t Initialize(Int_t runNumber);
     
   void SetAnalyzeMC(Bool_t flag = kTRUE) { fMC = flag; }
   void SetSkipTriggerClassSelection(Bool_t flag = kTRUE) { fSkipTriggerClassSelection = flag; }
-  void SetSkipV0(Bool_t flag=kTRUE) { fSkipV0 = flag;}
+  void SetSkipV0(Bool_t flag=kTRUE) { AliError ("This method is deprecated! Please change the OADB configuration instead") ; fSkipV0 = flag;}
    
-  void AddBackgroundIdentification(AliAnalysisCuts* background) { fBackgroundIdentification = background; }
+  void AddBackgroundIdentification(AliAnalysisCuts*) { AliFatal ("This method is deprecated. Please use the kSPDClsVsTrkBG tag in the OADB configuration instead"); }
     
-  virtual void Print(Option_t* option = "") const;
+  virtual void Print(const Option_t* option = "") const;
   virtual Long64_t Merge(TCollection* list);
-  void SaveHistograms(const char* folder = 0) const;
+  void SaveHistograms(const char* folder = 0);
     
   const TList* GetCollisionTriggerClasses() const { return &fCollTrigClasses; }
   const TList* GetBGTriggerClasses()        const { return &fBGTrigClasses; }
-  void AddCollisionTriggerClass(const char* className){ fCollTrigClasses.Add(new TObjString(className)); fUsingCustomClasses = kTRUE; }
-  void AddBGTriggerClass(const char* className)       { fBGTrigClasses.Add(new TObjString(className));  fUsingCustomClasses = kTRUE; }
-  
-  AliTriggerAnalysis* GetTriggerAnalysis() { return (fTriggerAnalysis.GetEntries() > 0) ? (AliTriggerAnalysis*) fTriggerAnalysis.At(0) : 0; }    
+  void AddCollisionTriggerClass(const char* className);
+  void AddBGTriggerClass(const char* className)       ;
+  void SetCustomOADBObjects(AliOADBPhysicsSelection * oadbPS, AliOADBFillingScheme * oadbFS, AliOADBTriggerAnalysis * oadbTA = 0) { fPSOADB = oadbPS; fFillOADB = oadbFS; fTriggerOADB = oadbTA; fUsingCustomClasses = kTRUE;}
+  const AliOADBPhysicsSelection * GetOADBPhysicsSelection() const {return fPSOADB;  }
+  const AliOADBFillingScheme    * GetOADBFillingScheme()    const {return fFillOADB;}
+  const AliOADBTriggerAnalysis  * GetOADBTriggerAnalysis()  const {return fTriggerOADB;}
+
+  Int_t GetBGStatOffset() const { return fBGStatOffset; }
+
+
+  AliTriggerAnalysis* GetTriggerAnalysis(Int_t i = 0) { return (fTriggerAnalysis.GetEntries() > 0) ? (AliTriggerAnalysis*) fTriggerAnalysis.At(i) : 0; }    
     
   const TH2F* GetStatisticsHistogram(Int_t idx=kStatIdxAll) const { return fHistStatistics[idx]; }
   const TH2F* GetBunchCrossingHistogram() const { return fHistBunchCrossing; }
+  virtual TObject *GetStatistics(const Option_t *option) const;
     
-  void SetBIFactors(Int_t run);
+  void SetBIFactors(const AliESDEvent * aESD);
   
   void SetUseBXNumbers(Bool_t flag = kTRUE) {fUseBXNumbers = flag;}
-  void SetComputeBG   (Bool_t flag = kTRUE) {fComputeBG    = flag; if(flag) fUseBXNumbers = flag;}
+  void SetComputeBG   (UInt_t flag = AliVEvent::kMB) {fComputeBG    = flag; if(flag) fUseBXNumbers = flag;}
+  void SetUseMuonTriggers(Bool_t) { Printf("ERROR: Use of AliPhysicsSelection::SetUseMuonTriggers is deprecated. Use AliVEvent::kMUON selection instead."); }
   void SetBin0Callback( const char * cb) {fBin0CallBack = cb;} 
   void SetBin0CallbackViaPointer( Bin0Callback_t cb) {fBin0CallBackPointer = cb;}// WARNING: THIS SHOULD NOT BE USED, WILL BE REMOVED SOON
+  
+  static const char * GetOADBFileName() {   static TString filename; filename.Form("%s/COMMON/PHYSICSSELECTION/data/physicsSelection.root", AliAnalysisManager::GetOADBPath()); return filename.Data();};
 
+  void SetPassName(const TString passName) { fPassName = passName; }
+  void DetectPassName();
+  Bool_t IsMC() const { return fMC; }
 protected:
-  Bool_t CheckTriggerClass(const AliESDEvent* aEsd, const char* trigger) const;
-  Int_t GetTriggerScheme(UInt_t runNumber) const;
-  const char * GetBXIDs(UInt_t runNumber, const char * trigger ) ;
-  const char * GetFillingScheme(UInt_t runNumber) ;
-  Int_t GetRatioBBBE(Int_t runNumber);
+  UInt_t CheckTriggerClass(const AliESDEvent* aEsd, const char* trigger, Int_t& triggerLogic) const;
+  Bool_t EvaluateTriggerLogic(const AliESDEvent* aEsd, AliTriggerAnalysis* triggerAnalysis, const char* triggerLogic, Bool_t offline);
   TH2F * BookHistStatistics(const char * tag) ;
+  Int_t GetStatRow(const char * triggerBXClass, UInt_t offlineTriggerType, UInt_t ** rowIDs) const;
+  const char * GetTriggerString(TObjString * obj);
 
-    
+  TString fPassName;      // pass name for current run
   Int_t fCurrentRun;      // run number for which the object is initialized
   Bool_t fMC;             // flag if MC is analyzed
   TList fCollTrigClasses; // trigger class identifying collision candidates
   TList fBGTrigClasses;   // trigger classes identifying background events
     
   TList fTriggerAnalysis; // list of offline trigger objects (several are needed to keep the control histograms separate per trigger class)
-  
-  AliAnalysisCuts* fBackgroundIdentification; // class that performs additional background identification
-    
+      
   TH2F* fHistStatistics[2];      // how many events are cut away why {all,bin 0}
+  //  TH2F* fHistStatisticsTokens;   // how many events are cut away why (new version, bins for all tokens. Only used tokens are filled)
   TH2F* fHistBunchCrossing;   // histograms of accepted bunch crossing numbers
+  TH1F* fHistTriggerPattern;  // Pattern of the individual detectors in the MB1 trigger. Can reveal inconsistencies/inefficiencies in the trigger 
     
-  Bool_t fSkipTriggerClassSelection;  // flag that determines if the trigger classs selection is skipped
+  Bool_t fSkipTriggerClassSelection;  // flag that determines if the trigger class selection is skipped
   Bool_t fUsingCustomClasses;         // flag that is set if costum trigger classes are defined
   Bool_t fSkipV0;                     // ignore information from v0
 
   Float_t fBIFactorA;                 // ratio of interacting over non interacting bunch intensities for beam 1
   Float_t fBIFactorC;                 // ratio of interacting over non interacting bunch intensities for beam 2
+  Float_t fBIFactorAC;                // ratio of interacting over non interacting bunch intensities for beam 1&2: 
+                                      // for some trigger classes we do not distinguish betweem 1 and 2
 
-  Int_t fRatioBEEE;                   // ratio between the number of BX in the Beam-Empty and the Empty-Empty. Depends on the filling and on the trigger scheme
 
-  Bool_t fComputeBG;                  // Switch on computation of background and filling of relevant stat table entries. If you enable this you can only process one run at a time (the relative bunch intensity used to compute this chages from run to run)
-  Bool_t fUseBXNumbers;            // Explicitely select "good" bunch crossing numbers (exclude pilot, afterpulses and fakes). If you anable this you can only process  runs within the same filling scheme.
-  TString fFillingScheme;             // stores the filling scheme of the current run.
+  UInt_t fComputeBG; // Switch on computation of background and filling of relevant stat table entries. If you enable this you can only process one run at a time (the relative bunch intensity used to compute this chages from run to run); This is a mask of the trigger types to be used in the selection, as defined in AliVEvent
+  Int_t fBGStatOffset; // Offset of the BG statistics computed at the end of the processing. It depends on how many trigger classes you have selected
+  Bool_t fUseBXNumbers;        // Explicitely select "good" bunch crossing numbers (exclude pilot, afterpulses and fakes). If you anable this you can only process  runs within the same filling scheme.
+  Bool_t fUseMuonTriggers;     // if true, also use the muon triggers
+  TString fFillingScheme; // stores the filling scheme of the current run.
 
   TString fBin0CallBack; // callback used to determine if an event is in the bin0 (name of the task where the callback is implemented);
   Bin0Callback_t fBin0CallBackPointer; //! don't stream this. TO BE REMOVED SOON
 
-  ClassDef(AliPhysicsSelection, 6)
+  Bool_t fIsPP; // True if processing pp run, false if heavy ion
+
+  AliOADBPhysicsSelection * fPSOADB; // Physics selection OADB object
+  AliOADBFillingScheme    * fFillOADB; // Filling scheme OADB object
+  AliOADBTriggerAnalysis  * fTriggerOADB; // Trigger analysis OADB object
+
+  TPRegexp* fRegexp; //! regular expression for trigger tokens
+  TList* fCashedTokens; //! trigger token lookup list
+
+  ClassDef(AliPhysicsSelection, 16)
     
     private:
   AliPhysicsSelection(const AliPhysicsSelection&);