]> git.uio.no Git - u/mrichter/AliRoot.git/blob - FASTSIM/AliFastResponse.cxx
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / FASTSIM / AliFastResponse.cxx
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 /*
17 $Log$
18 */
19
20
21 #include "AliFastResponse.h"
22 #include "AliFastParticle.h"
23
24 ClassImp(AliFastResponse)
25
26
27 Float_t AliFastResponse::Evaluate(AliFastParticle* part)
28 {
29 //
30 // Basic implementation of this method 
31 //
32     Float_t theta = part->Theta();
33     Float_t phi   = part->Phi();
34     Float_t pt    = part->Pt();
35     Float_t eff   = Evaluate(pt, theta, phi);
36     return eff;
37 }
38
39 void AliFastResponse::Evaluate(Float_t   p,  Float_t  theta , Float_t   phi,
40                                Float_t& pS,  Float_t& thetaS, Float_t&  phiS)
41 {
42 //    
43 // Basic implementation of this method 
44 //
45     pS     = p;
46     thetaS = theta;
47     phiS   = phi;
48 }
49