]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG3/hfe/AliHFEdetPIDqa.cxx
221fb4f0a086c7262a4969351fa44bff0d940ca5
[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 /* $Id$ */
17
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
37 ClassImp(AliHFEdetPIDqa)
38
39 //____________________________________________________________
40 AliHFEdetPIDqa::AliHFEdetPIDqa():
41     TNamed()
42   , fQAmanager(NULL)
43 {
44   //
45   // Dummy constructor
46   //
47 }
48
49 //____________________________________________________________
50 AliHFEdetPIDqa::AliHFEdetPIDqa(const Char_t *name, const Char_t *title):
51     TNamed(name, title)
52   , fQAmanager(NULL)
53 {
54   //
55   // Default constructor
56   //
57 }
58
59 //____________________________________________________________
60 AliHFEdetPIDqa::AliHFEdetPIDqa(const AliHFEdetPIDqa &o):
61     TNamed(o)
62   , fQAmanager(o.fQAmanager)
63 {
64   //
65   // Copy constructor
66   //
67 }
68
69 //____________________________________________________________
70 AliHFEdetPIDqa &AliHFEdetPIDqa::operator=(const AliHFEdetPIDqa &o){
71   //
72   // Make assignment
73   //
74   TNamed::operator=(o);
75
76   fQAmanager = o.fQAmanager;
77   return *this;
78 }
79