]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSPIDv1.cxx
New functions and constructors added and some other fixes.
[u/mrichter/AliRoot.git] / PHOS / AliPHOSPIDv1.cxx
CommitLineData
6ad0bfa0 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
b2a60966 16/* $Id$ */
17
6ad0bfa0 18//_________________________________________________________________________
b2a60966 19// Implementation version v1 of the PHOS particle identifier
20// Identification is based on information from PPSD and EMC
21//
2aad621e 22//*-- Author: Yves Schutz (SUBATECH) & Gines Martinez (SUBATECH)
b2a60966 23
6ad0bfa0 24
25// --- ROOT system ---
26
27// --- Standard library ---
28
de9ec31b 29#include <iostream.h>
6ad0bfa0 30
31// --- AliRoot header files ---
32
26d4b141 33#include "AliPHOSPIDv1.h"
6ad0bfa0 34#include "AliPHOSTrackSegment.h"
35#include "AliPHOSRecParticle.h"
83974468 36#include "AliPHOSIndexToObject.h"
6ad0bfa0 37
26d4b141 38ClassImp( AliPHOSPIDv1)
6ad0bfa0 39
6ad0bfa0 40//____________________________________________________________________________
88714635 41void AliPHOSPIDv1::MakeParticles(AliPHOSTrackSegment::TrackSegmentsList * trsl,
42 AliPHOSRecParticle::RecParticlesList * rpl)
6ad0bfa0 43{
b2a60966 44 // Makes a RecParticle out of a TrackSegment
6ad0bfa0 45
46 TIter next(trsl) ;
47 AliPHOSTrackSegment * tracksegment ;
48 Int_t index = 0 ;
09fc14a0 49 AliPHOSRecParticle * rp ;
0dd37dda 50 Int_t type ;
839ffcb3 51 Int_t showerprofile; // 0 narrow and 1 wide
52 Int_t cpvdetector; // 1 hit and 0 no hit
53 Int_t pcdetector; // 1 hit and 0 no hit
0dd37dda 54
6ad0bfa0 55 while ( (tracksegment = (AliPHOSTrackSegment *)next()) ) {
09fc14a0 56 new( (*rpl)[index] ) AliPHOSRecParticle(tracksegment) ;
83974468 57 rp = (AliPHOSRecParticle *)rpl->At(index) ;
2aad621e 58 AliPHOSEmcRecPoint * recp = tracksegment->GetEmcRecPoint() ;
59 Float_t * lambda = new Float_t[2];
60 recp->GetElipsAxis(lambda) ;
61
62 // Looking at the lateral development of the shower
63 if ( ( lambda[0] > fLambda1m && lambda[0] < fLambda1M ) && // shower profile cut
839ffcb3 64 ( lambda[1] > fLambda2m && lambda[1] < fLambda2M ) )
65 showerprofile = 0 ; // NARROW PROFILE
66 else
67 showerprofile = 1 ;// WIDE PROFILE
2aad621e 68
69 // Looking at the photon conversion detector
839ffcb3 70 if( tracksegment->GetPpsdLowRecPoint() == 0 )
71 pcdetector = 0 ; // No hit
72 else
73 pcdetector = 1 ; // hit
2aad621e 74
75 // Looking at the photon conversion detector
839ffcb3 76 if( tracksegment->GetPpsdUpRecPoint() == 0 )
77 cpvdetector = 0 ; // No hit
78 else
79 cpvdetector = 1 ; // Hit
2aad621e 80
839ffcb3 81 type = showerprofile + 2 * pcdetector + 4 * cpvdetector ;
09fc14a0 82 rp->SetType(type) ;
6ad0bfa0 83 index++ ;
84 }
85
86}
87
09fc14a0 88//____________________________________________________________________________
0a6d52e3 89void AliPHOSPIDv1:: Print(const char * opt)
09fc14a0 90{
b2a60966 91 // Print the parameters used for the particle type identification
92
09fc14a0 93 cout << "AliPHOSPIDv1 : cuts for the particle idendification based on the shower profile " << endl
94 << fLambda1m << " < value1 < " << fLambda1M << endl
95 << fLambda2m << " < value2 < " << fLambda2M << endl ;
96
97}
98
99//____________________________________________________________________________
100void AliPHOSPIDv1::SetShowerProfileCuts(Float_t l1m, Float_t l1M, Float_t l2m, Float_t l2M)
101{
b2a60966 102 // Modifies the parameters used for the particle type identification
103
09fc14a0 104 fLambda1m = l1m ;
105 fLambda1M = l1M ;
106 fLambda2m = l2m ;
107 fLambda2M = l2M ;
108}