]>
Commit | Line | Data |
---|---|---|
8bb5c9a6 | 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 | ||
803d1ab0 | 16 | /* $Id$ */ |
8bb5c9a6 | 17 | |
18 | #include "AliFastResponse.h" | |
19 | #include "AliFastParticle.h" | |
20 | ||
21 | ClassImp(AliFastResponse) | |
22 | ||
23 | ||
24 | Float_t AliFastResponse::Evaluate(AliFastParticle* part) | |
25 | { | |
26 | // | |
27 | // Basic implementation of this method | |
28 | // | |
29 | Float_t theta = part->Theta(); | |
30 | Float_t phi = part->Phi(); | |
31 | Float_t pt = part->Pt(); | |
32 | Float_t eff = Evaluate(pt, theta, phi); | |
33 | return eff; | |
34 | } | |
35 | ||
36 | void AliFastResponse::Evaluate(Float_t p, Float_t theta , Float_t phi, | |
37 | Float_t& pS, Float_t& thetaS, Float_t& phiS) | |
38 | { | |
39 | // | |
40 | // Basic implementation of this method | |
41 | // | |
42 | pS = p; | |
43 | thetaS = theta; | |
44 | phiS = phi; | |
45 | } | |
46 |