ROOT logo
#ifndef ALIBCMHIT_H
#define ALIBCMHIT_H
/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
 * See cxx source for full Copyright notice                               */
//
// Beam Condition Monitor (BCM) Hit Class
//
// andreas.morsch@cern.ch
//
#include "AliHit.h"

class AliBCMHit : public AliHit 
{
 public:
    AliBCMHit();
    AliBCMHit(Int_t shunt, Int_t track, Double_t x[4], Int_t isens, Float_t edep);
    Int_t    Id()   const { return fId;   }
    Float_t  Edep() const { return fEdep; }
    Float_t  Time() const { return fTime; }
 private:
    Int_t fId;      // ID of the sensor (11, 12, 13, 14) for z > 0 and (21, 22, 23, 24) for z < 0
    Float_t fEdep;  // Deposited energy [GeV]
    Float_t fTime;  // Time of hit
    
    ClassDef(AliBCMHit, 1) // BCM hit class 
};
      
#endif
 AliBCMHit.h:1
 AliBCMHit.h:2
 AliBCMHit.h:3
 AliBCMHit.h:4
 AliBCMHit.h:5
 AliBCMHit.h:6
 AliBCMHit.h:7
 AliBCMHit.h:8
 AliBCMHit.h:9
 AliBCMHit.h:10
 AliBCMHit.h:11
 AliBCMHit.h:12
 AliBCMHit.h:13
 AliBCMHit.h:14
 AliBCMHit.h:15
 AliBCMHit.h:16
 AliBCMHit.h:17
 AliBCMHit.h:18
 AliBCMHit.h:19
 AliBCMHit.h:20
 AliBCMHit.h:21
 AliBCMHit.h:22
 AliBCMHit.h:23
 AliBCMHit.h:24
 AliBCMHit.h:25
 AliBCMHit.h:26
 AliBCMHit.h:27
 AliBCMHit.h:28