]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - PHOS/AliPHOSPID.h
This is a MAJOR modification:
[u/mrichter/AliRoot.git] / PHOS / AliPHOSPID.h
... / ...
CommitLineData
1#ifndef ALIPHOSPID_H
2#define ALIPHOSPID_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 PHOS
10// base class
11//
12//*-- Author: Yves Schutz (SUBATECH)
13
14// --- ROOT system ---
15
16#include "TObject.h"
17#include "TClonesArray.h"
18
19// --- Standard library ---
20
21// --- AliRoot header files ---
22
23#include "AliPHOSTrackSegment.h"
24#include "AliPHOSRecParticle.h"
25
26
27
28class AliPHOSPID : public TObject {
29
30public:
31
32 AliPHOSPID() ; // ctor
33 virtual ~AliPHOSPID() ; // dtor
34
35 virtual void MakeParticles(TrackSegmentsList * trsl, RecParticlesList * rpl) {} ;
36 virtual void SetShowerProfileCuts(Float_t, Float_t, Float_t, Float_t) {} ;
37 virtual void SetDispersionCutOff(Float_t ) {}
38
39 ClassDef(AliPHOSPID,1) // Particle Identifier algorithm (base class)
40
41} ;
42
43#endif // ALIPHOSPID_H