]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALPID.h
Corrected argument
[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"
c9b2f104 18class TFormula ;
19class TClonesArray ;
20
21// --- Standard library ---
22
23// --- AliRoot header files ---
24
25class AliEMCALGeometry ;
26class AliEMCALClusterizer ;
27class AliEMCALTrackSegmentMaker ;
28
29class AliEMCALPID : public TTask {
30
31 public:
32
33 AliEMCALPID() ; // ctor
e191bb57 34 AliEMCALPID(const TString alirunFileName, const TString eventFolderName = AliConfig::GetDefaultEventFolderName()) ;
6e34cfde 35 AliEMCALPID(const AliEMCALPID & pid):TTask(pid) {;}
c9b2f104 36 virtual ~AliEMCALPID() ; // dtor
37
9e5d2067 38 virtual void Exec(Option_t *) = 0;
17323043 39 virtual Int_t GetRecParticlesInRun() const { Warning("GetRecParticlesInRun", "not defined" ) ; return 0 ;}
7b8d3392 40 virtual void Print() const { Warning("Print", "not defined" ) ;}
41 void SetEventRange(Int_t first=0, Int_t last=-1) {fFirstEvent=first; fLastEvent=last; }
42 void SetEventFolderName(TString name) { fEventFolderName = name ; }
9e5d2067 43 virtual void SetPREtoECADistanceCut(Float_t, TString, Float_t) { Warning("SetCpvtoEmcDistanceCut", "not defined" ) ;}
44 virtual void SetTimeGate(Float_t /*Cluster_En*/, TString /*Eff_Pur*/, Float_t /*gate*/) { Warning("SetTimeGate", "not defined" ) ; }
8e8eae84 45 virtual const char * Version() const { Warning("Version", "not defined" ) ; return 0 ; }
9e5d2067 46 virtual void WriteRecParticles() = 0;
c9b2f104 47
48private:
49 virtual void Init() { Warning("Init", "not defined" ) ; }
50
51protected:
88cb7938 52 TString fEventFolderName ; // event folder name
7b8d3392 53 Int_t fFirstEvent; // first event to process
54 Int_t fLastEvent; // last event to process
88cb7938 55
6e34cfde 56 ClassDef(AliEMCALPID,3) // Particle Identifier algorithm (base class)
c9b2f104 57
58} ;
59
60#endif // ALIEMCALPID_H