]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONHit.h
add NaN trap to linux version
[u/mrichter/AliRoot.git] / MUON / AliMUONHit.h
CommitLineData
a9e2aefa 1#ifndef ALIMUONHIT_H
2#define ALIMUONHIT_H
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 "AliHit.h"
9
10class AliMUONHit : public AliHit {
11 public:
12 Int_t fChamber; // Chamber number
13 Float_t fParticle; // Geant3 particle type
14 Float_t fTheta ; // Incident theta angle in degrees
15 Float_t fPhi ; // Incident phi angle in degrees
16 Float_t fTlength; // Track length inside the chamber
17 Float_t fEloss; // ionisation energy loss in gas
18 Float_t fAge; // Particle Age
19 Int_t fPHfirst; // first padhit
20 Int_t fPHlast; // last padhit
21
22 Float_t fPTot; // hit local momentum P
23 Float_t fCxHit; // Px/P
24 Float_t fCyHit; // Py/P
25 Float_t fCzHit; // Pz/P
26
27 public:
28 AliMUONHit() {}
29 AliMUONHit(Int_t fIshunt, Int_t track, Int_t *vol, Float_t *hits);
30 virtual ~AliMUONHit() {}
31
a1001283 32 ClassDef(AliMUONHit,1) //Hit object for MUON
a9e2aefa 33};
34#endif