]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - CORRFW/AliCFCutBase.h
Split: removed dirs now in AliPhysics
[u/mrichter/AliRoot.git] / CORRFW / AliCFCutBase.h
diff --git a/CORRFW/AliCFCutBase.h b/CORRFW/AliCFCutBase.h
deleted file mode 100644 (file)
index 9789741..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-#ifndef ALICFCUTBASE_H
-#define ALICFCUTBASE_H
-/**************************************************************************
- * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- *                                                                        *
- * Author: The ALICE Off-line Project.                                    *
- * Contributors are mentioned in the code where appropriate.              *
- *                                                                        *
- * Permission to use, copy, modify and distribute this software and its   *
- * documentation strictly for non-commercial purposes is hereby granted   *
- * without fee, provided that the above copyright notice appears in all   *
- * copies and that both the copyright notice and this permission notice   *
- * appear in the supporting documentation. The authors make no claims     *
- * about the suitability of this software for any purpose. It is          *
- * provided "as is" without express or implied warranty.                  *
- **************************************************************************/
-// Base class for selecton classes for the correction framework 
-// Inherits from AliAnalysisCuts. It includes additional methods to handle QA 
-// histograms and if needed, study the cut statistics & correlations 
-// Author S.Arcelli
-// silvia.Arcelli@cern.ch
-
-#include <AliAnalysisCuts.h>
-class TBits;
-class TList;
-//___________________________________________________________________________
-class AliCFCutBase : public AliAnalysisCuts
-{
- public:
-  AliCFCutBase(); //default ctor
-  AliCFCutBase(const char* name, const char* title); //ctor
-  AliCFCutBase(const AliCFCutBase& obj); //copy ctor  
-  virtual ~AliCFCutBase() {;} //dtor
-  virtual Bool_t IsQAOn() const {return fIsQAOn;}; //QA flag getter
-  virtual void SetQAOn(TList* list) {fIsQAOn=kTRUE; AddQAHistograms(list);} //QA flag setter
-  virtual void  SetMCEventInfo(const TObject *) {} //Pass pointer to MC event
-  virtual void SetRecEventInfo(const TObject *) {} //Pass pointer to reconstructed event
-  
- protected:
-  Bool_t fIsQAOn;//qa checking on/off
-  virtual void AddQAHistograms(TList*) {;}; //QA Histos
-
-  ClassDef(AliCFCutBase, 1); // Base class for Correction Framework Cuts
-};
-#endif