1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15 // Base class for selection classes for the correction framework.
16 // Inherits from AliAnalysisCuts. It includes additional methods
17 // to export QA histograms & study the cut statistics & correlations
18 // through the bitmap of the cuts embedded in each class, if needed
20 // silvia.Arcelli@cern.ch
22 #include "AliCFCutBase.h"
25 ClassImp(AliCFCutBase)
28 //___________________________________________________________________________
29 AliCFCutBase::AliCFCutBase():
34 // Default constructor
38 //___________________________________________________________________________
39 AliCFCutBase::AliCFCutBase(const char* name, const char* title):
40 AliAnalysisCuts(name, title),
48 //___________________________________________________________________________
49 AliCFCutBase::AliCFCutBase(const AliCFCutBase& obj):