]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALPID.h
Transition to NewIO
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALPID.h
CommitLineData
c9b2f104 1#ifndef ALIEMCALPID_H
2#define ALIEMCALPID_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8//_________________________________________________________________________
9// Algorithm class for the identification of particles detected in EMCAL
10// base class
11// of identified particles
12//*-- Author: Yves Schutz (SUBATECH)
13
14// --- ROOT system ---
15
16#include "TTask.h"
88cb7938 17#include "AliConfig.h"
18
c9b2f104 19class TFormula ;
20class TClonesArray ;
21
22// --- Standard library ---
23
24// --- AliRoot header files ---
25
26class AliEMCALGeometry ;
27class AliEMCALClusterizer ;
28class AliEMCALTrackSegmentMaker ;
29
30class AliEMCALPID : public TTask {
31
32 public:
33
34 AliEMCALPID() ; // ctor
88cb7938 35 AliEMCALPID(const TString alirunFileName, const TString eventFolderName = AliConfig::fgkDefaultEventFolderName) ;
36 AliEMCALPID(const AliEMCALPID & pid) {;}
c9b2f104 37 virtual ~AliEMCALPID() ; // dtor
38
39 virtual void Exec(Option_t * option) { Warning("Exec", "not defined" ) ; }
40 virtual const Int_t GetRecParticlesInRun() const { Warning("GetRecParticlesInRun", "not defined" ) ; return 0 ;}
41 virtual void Print(Option_t * option) const { Warning("Print", "not defined" ) ;}
88cb7938 42 void SetEventFolderName(TString name) { fEventFolderName = name ; }
43 virtual void SetPREtoECADistanceCut(Float_t Cluster_En, TString Eff_Pur,Float_t cut ) { Warning("SetCpvtoEmcDistanceCut", "not defined" ) ;}
c9b2f104 44 virtual void SetTimeGate(Float_t Cluster_En, TString Eff_Pur, Float_t gate) { Warning("SetTimeGate", "not defined" ) ; }
45 virtual const char * Version() const { Warning("Version", "not defined" ) ; return 0 ; }
46 virtual void WriteRecParticles(Int_t event) { Warning("WriteRecParticles", "not defined" ) ; }
47
48private:
49 virtual void Init() { Warning("Init", "not defined" ) ; }
50
51protected:
88cb7938 52 TString fEventFolderName ; // event folder name
53
54 ClassDef(AliEMCALPID,2) // Particle Identifier algorithm (base class)
c9b2f104 55
56} ;
57
58#endif // ALIEMCALPID_H