]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FASTSIM/AliFastMuonTrackingRes.h
b and c contribution scaled by 2.
[u/mrichter/AliRoot.git] / FASTSIM / AliFastMuonTrackingRes.h
CommitLineData
6255180c 1#ifndef ALIFASTMUONTRACKINGRES
2#define ALIFASTMUONTRACKINGRES
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8#include "AliFastResponse.h"
9class AliMUONFastTracking;
10
11class AliFastMuonTrackingRes : public AliFastResponse {
12 public:
13 AliFastMuonTrackingRes();
14 ~AliFastMuonTrackingRes(){;}
15 void SetBackground(Float_t bg = 1.) {fBackground = bg;}
16 void SetCharge(Float_t charge = 1.) {fCharge = charge;}
17 virtual void Init();
18 virtual void Evaluate(Float_t p, Float_t theta , Float_t phi,
19 Float_t& pS, Float_t& thetaS, Float_t& phiS);
20 protected:
21 Float_t fBackground; // Background level
22 Float_t fCharge; // Current charge
23
24 AliMUONFastTracking* fFastTracking; //!Pointer to Fast Tracking Data Handler
25 ClassDef(AliFastMuonTrackingRes,1) // Fast MUON Tracking
26};
27
28#endif
29
30