]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - CORRFW/AliCFEventGenCuts.h
TPC percentile calibration
[u/mrichter/AliRoot.git] / CORRFW / AliCFEventGenCuts.h
index 6f9e0d0fcc037b59d6c2ef4b320100b53a07ebf4..d1dfa7ab11e682cea1e76fb30e69083549ff0ef2 100644 (file)
@@ -1,4 +1,3 @@
-
 #ifndef ALICFEVENTGENCUTS_H
 #define ALICFEVENTGENCUTS_H
 /**************************************************************************
@@ -27,7 +26,7 @@
 
 #include "AliCFCutBase.h"
 class TBits;
-class AliEventGenHeader;
+class AliGenEventHeader;
 class AliMCEvent;
 //____________________________________________________________________________
 class AliCFEventGenCuts: public AliCFCutBase 
@@ -38,9 +37,8 @@ class AliCFEventGenCuts: public AliCFCutBase
   AliCFEventGenCuts(const AliCFEventGenCuts& c) ;
   AliCFEventGenCuts& operator=(const AliCFEventGenCuts& c) ;
   ~AliCFEventGenCuts();
-  void GetBitMap(TObject *obj, TBits *bitmap);
   Bool_t IsSelected(TObject* obj);
-  void Init(){;};
+  Bool_t IsSelected(TList* /*list*/) {return kTRUE;}
 
   //number of embedded cuts
   enum{kNCuts=5};
@@ -78,9 +76,9 @@ class AliCFEventGenCuts: public AliCFCutBase
   Double_t GetVertexZMin() const {return fVtxZMin;} // cut values getter
   
 
- private:
+ protected:
 
-  TBits * SelectionBitMap(TObject* obj);
+  void SelectionBitMap(TObject* obj);
   
   Int_t fMBProcType ; //the type of selected MB process 
   Int_t fNTracksMin; //minimum number of particles in the event
@@ -95,7 +93,7 @@ class AliCFEventGenCuts: public AliCFCutBase
 
   TBits *fBitMap ; //cut mask
 
-  ClassDef(AliCFEventGenCuts,1);
+  ClassDef(AliCFEventGenCuts,2);
 };
 
 #endif