]> git.uio.no Git - u/mrichter/AliRoot.git/blame - CORRFW/AliCFCutBase.cxx
Converting PWG/TRD to native cmake
[u/mrichter/AliRoot.git] / CORRFW / AliCFCutBase.cxx
CommitLineData
563113d0 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
25ClassImp(AliCFCutBase)
26
27
28//___________________________________________________________________________
29AliCFCutBase::AliCFCutBase():
30 AliAnalysisCuts(),
31 fIsQAOn(kFALSE)
32{
33 //
34 // Default constructor
35 //
36}
37
38//___________________________________________________________________________
39AliCFCutBase::AliCFCutBase(const char* name, const char* title):
40 AliAnalysisCuts(name, title),
41 fIsQAOn(kFALSE)
42{
43 //
44 // Constructor
45 //
46}
47
48//___________________________________________________________________________
49AliCFCutBase::AliCFCutBase(const AliCFCutBase& obj):
50 AliAnalysisCuts(obj),
51 fIsQAOn(obj.fIsQAOn)
52{
53 //
54 // Copy Constructor
55 //
56}