ROOT logo
//  **************************************************************************
//  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
//  *                                                                        *
//  * Author: The ALICE Off-line Project.                                    *
//  * Contributors are mentioned in the code where appropriate.              *
//  *                                                                        *
//  * Permission to use, copy, modify and distribute this software and its   *
//  * documentation strictly for non-commercial purposes is hereby granted   *
//  * without fee, provided that the above copyright notice appears in all   *
//  * copies and that both the copyright notice and this permission notice   *
//  * appear in the supporting documentation. The authors make no claims     *
//  * about the suitability of this software for any purpose. It is          *
//  * provided "as is" without express or implied warranty.                  *
//  **************************************************************************


/* $Id$ */

//
// BCM Hit Class
// 
// Detector Numberig 
// 11, 12, 13, 14 for z > 0
// 21, 22, 23, 24 for z < 0
//
// andreas.morsch@cern.ch


#include "AliBCMHit.h"
ClassImp(AliBCMHit)


AliBCMHit::AliBCMHit():
    AliHit(),
    fId(-1),
    fEdep(0.),
    fTime(0.)
{
    // Default constructor
}

AliBCMHit::AliBCMHit(Int_t shunt, Int_t track, Double_t x[4], Int_t isens, Float_t edep):
    AliHit(shunt, track),
    fId(isens),
    fEdep(edep),
    fTime(x[3])
{
    // Constructor
    fX = x[0];
    fY = x[1];
    fZ = x[2];
}
 AliBCMHit.cxx:1
 AliBCMHit.cxx:2
 AliBCMHit.cxx:3
 AliBCMHit.cxx:4
 AliBCMHit.cxx:5
 AliBCMHit.cxx:6
 AliBCMHit.cxx:7
 AliBCMHit.cxx:8
 AliBCMHit.cxx:9
 AliBCMHit.cxx:10
 AliBCMHit.cxx:11
 AliBCMHit.cxx:12
 AliBCMHit.cxx:13
 AliBCMHit.cxx:14
 AliBCMHit.cxx:15
 AliBCMHit.cxx:16
 AliBCMHit.cxx:17
 AliBCMHit.cxx:18
 AliBCMHit.cxx:19
 AliBCMHit.cxx:20
 AliBCMHit.cxx:21
 AliBCMHit.cxx:22
 AliBCMHit.cxx:23
 AliBCMHit.cxx:24
 AliBCMHit.cxx:25
 AliBCMHit.cxx:26
 AliBCMHit.cxx:27
 AliBCMHit.cxx:28
 AliBCMHit.cxx:29
 AliBCMHit.cxx:30
 AliBCMHit.cxx:31
 AliBCMHit.cxx:32
 AliBCMHit.cxx:33
 AliBCMHit.cxx:34
 AliBCMHit.cxx:35
 AliBCMHit.cxx:36
 AliBCMHit.cxx:37
 AliBCMHit.cxx:38
 AliBCMHit.cxx:39
 AliBCMHit.cxx:40
 AliBCMHit.cxx:41
 AliBCMHit.cxx:42
 AliBCMHit.cxx:43
 AliBCMHit.cxx:44
 AliBCMHit.cxx:45
 AliBCMHit.cxx:46
 AliBCMHit.cxx:47
 AliBCMHit.cxx:48
 AliBCMHit.cxx:49
 AliBCMHit.cxx:50
 AliBCMHit.cxx:51
 AliBCMHit.cxx:52