]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGHF/hfe/AliHFEdetPIDqa.cxx
few changes in configuration VertexingHF for filtering pp 2010 data
[u/mrichter/AliRoot.git] / PWGHF / 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**************************************************************************/
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
34ClassImp(AliHFEdetPIDqa)
35
36//____________________________________________________________
37AliHFEdetPIDqa::AliHFEdetPIDqa():
38 TNamed()
6555e2ad 39 , fQAmanager(NULL)
3a72645a 40{
41 //
42 // Dummy constructor
43 //
44}
45
46//____________________________________________________________
47AliHFEdetPIDqa::AliHFEdetPIDqa(const Char_t *name, const Char_t *title):
48 TNamed(name, title)
6555e2ad 49 , fQAmanager(NULL)
3a72645a 50{
51 //
52 // Default constructor
53 //
54}
55
56//____________________________________________________________
57AliHFEdetPIDqa::AliHFEdetPIDqa(const AliHFEdetPIDqa &o):
58 TNamed(o)
6555e2ad 59 , fQAmanager(o.fQAmanager)
3a72645a 60{
61 //
62 // Copy constructor
63 //
64}
65
66//____________________________________________________________
67AliHFEdetPIDqa &AliHFEdetPIDqa::operator=(const AliHFEdetPIDqa &o){
68 //
69 // Make assignment
70 //
aa1417ee 71 if(this == &o) return *this;
3a72645a 72 TNamed::operator=(o);
73
6555e2ad 74 fQAmanager = o.fQAmanager;
3a72645a 75 return *this;
76}
77