]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGHF/hfe/AliHFEbayesPIDqa.h
Update
[u/mrichter/AliRoot.git] / PWGHF / hfe / AliHFEbayesPIDqa.h
CommitLineData
8c1c76e9 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 AliHFEbayesPIDqa
17// Monitoring Bayes PID in the HFE PID montioring framework
18// More information can be found inside the implementation file
19//
20#ifndef ALIHFEBAYESPIDQA_H
21#define ALIHFEBAYESPIDQA_H
22
23#ifndef ALIHFEDETPIDQA_H
24#include "AliHFEdetPIDqa.h"
25#endif
26
27//#ifndef ALIHFEPIDBASE_H
28//#include "AliHFEpidBase.h"
29//#endif
30
31class TBrowser;
32class TH2;
33class AliHFEcollection;
34class AliVParticle;
35class AliHFEpidBayes;
36class AliHFEpidBase;
37
38class AliHFEbayesPIDqa : public AliHFEdetPIDqa{
39 public:
40 AliHFEbayesPIDqa();
41 AliHFEbayesPIDqa(const char*name);
42 AliHFEbayesPIDqa(const AliHFEbayesPIDqa &c);
43 AliHFEbayesPIDqa &operator=(const AliHFEbayesPIDqa &o);
44 ~AliHFEbayesPIDqa();
aa1417ee 45 void Copy(TObject &o) const;
46 virtual Long64_t Merge(TCollection *col);
8c1c76e9 47
48 virtual void Initialize();
49 virtual void ProcessTrack(const AliHFEpidObject *track, AliHFEdetPIDqa::EStep_t step);
50
51
52 AliHFEcollection *GetHistograms() const { return fHistos; }
53
54 protected:
8c1c76e9 55 void CreateDetectorSignalHistograms();
56 Double_t CalcTOFMass(const AliHFEpidObject *track);
57private:
8c1c76e9 58// AliHFEpidBayes *fBAYESpid; // HFE PID for TRD
59 AliHFEcollection *fHistos; // Container for Histograms
60
61 ClassDef(AliHFEbayesPIDqa, 1);
62};
63#endif