]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FASTSIM/AliFastResponse.cxx
b and c contribution scaled by 2.
[u/mrichter/AliRoot.git] / FASTSIM / AliFastResponse.cxx
CommitLineData
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
16/*
17$Log$
18Revision 1.1 2002/09/20 13:32:51 morsch
19Base classes for fast simulation. First commit.
20
21*/
22
23
24#include "AliFastResponse.h"
25#include "AliFastParticle.h"
26
27ClassImp(AliFastResponse)
28
29
30Float_t AliFastResponse::Evaluate(AliFastParticle* part)
31{
32//
33// Basic implementation of this method
34//
35 Float_t theta = part->Theta();
36 Float_t phi = part->Phi();
37 Float_t pt = part->Pt();
38 Float_t eff = Evaluate(pt, theta, phi);
39 return eff;
40}
41
42void AliFastResponse::Evaluate(Float_t p, Float_t theta , Float_t phi,
43 Float_t& pS, Float_t& thetaS, Float_t& phiS)
44{
45//
46// Basic implementation of this method
47//
48 pS = p;
49 thetaS = theta;
50 phiS = phi;
51}
52