]> git.uio.no Git - u/mrichter/AliRoot.git/blob - CORRFW/AliCFCutBase.cxx
add a few more options when selecting the set of detectors used in PID, fix in QA...
[u/mrichter/AliRoot.git] / CORRFW / AliCFCutBase.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
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
19 // Author S.Arcelli
20 // silvia.Arcelli@cern.ch
21
22 #include "AliCFCutBase.h"
23
24
25 ClassImp(AliCFCutBase)
26
27
28 //___________________________________________________________________________
29 AliCFCutBase::AliCFCutBase():
30   AliAnalysisCuts(),
31   fIsQAOn(kFALSE)
32 {
33   //
34   // Default constructor
35   //
36 }
37
38 //___________________________________________________________________________
39 AliCFCutBase::AliCFCutBase(const char* name, const char* title):
40   AliAnalysisCuts(name, title),
41   fIsQAOn(kFALSE)
42 {
43   //
44   // Constructor
45   //
46 }
47
48 //___________________________________________________________________________
49 AliCFCutBase::AliCFCutBase(const AliCFCutBase& obj):
50   AliAnalysisCuts(obj),
51   fIsQAOn(obj.fIsQAOn)
52 {
53   //
54   // Copy Constructor
55   //
56 }