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