]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG3/hfe/AliHFEdetPIDqa.cxx
Added default pass=2 value to AddTaskCentrality.C. Fatal error if the pass is not...
[u/mrichter/AliRoot.git] / PWG3 / hfe / AliHFEdetPIDqa.cxx
CommitLineData
3a72645a 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**************************************************************************/
27de2dfb 15
16/* $Id$ */
17
3a72645a 18//
19// Class AliHFEdetPIDqa
20// Base class for detector PID QA describing the interface to the PID QA
21// manager, keeping also commom functionality. The following functions have
22// to be implemented by the detector PID QA classes:
23// Initialize (basic initialization, i.e. histograms)
24// ProcessTrack (filling of the QA container)
25// The base class provides the ESD/AOD PID object for all detector PID QA
26// classes
27//
28// Author:
29// Markus Fasel <M.Fasel@gsi.de>
30//
31
32#include "AliAODpidUtil.h"
33#include "AliESDpid.h"
34
35#include "AliHFEdetPIDqa.h"
36
37ClassImp(AliHFEdetPIDqa)
38
39//____________________________________________________________
40AliHFEdetPIDqa::AliHFEdetPIDqa():
41 TNamed()
6555e2ad 42 , fQAmanager(NULL)
3a72645a 43{
44 //
45 // Dummy constructor
46 //
47}
48
49//____________________________________________________________
50AliHFEdetPIDqa::AliHFEdetPIDqa(const Char_t *name, const Char_t *title):
51 TNamed(name, title)
6555e2ad 52 , fQAmanager(NULL)
3a72645a 53{
54 //
55 // Default constructor
56 //
57}
58
59//____________________________________________________________
60AliHFEdetPIDqa::AliHFEdetPIDqa(const AliHFEdetPIDqa &o):
61 TNamed(o)
6555e2ad 62 , fQAmanager(o.fQAmanager)
3a72645a 63{
64 //
65 // Copy constructor
66 //
67}
68
69//____________________________________________________________
70AliHFEdetPIDqa &AliHFEdetPIDqa::operator=(const AliHFEdetPIDqa &o){
71 //
72 // Make assignment
73 //
74 TNamed::operator=(o);
75
6555e2ad 76 fQAmanager = o.fQAmanager;
3a72645a 77 return *this;
78}
79