]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - FASTSIM/AliFastResponse.cxx
Made more robust
[u/mrichter/AliRoot.git] / FASTSIM / AliFastResponse.cxx
... / ...
CommitLineData
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/* $Id$ */
17
18#include "AliFastResponse.h"
19#include "AliFastParticle.h"
20
21ClassImp(AliFastResponse)
22
23
24Float_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
36void 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