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$ */

///////////////////////////////////////////////////////////////////////////////
//                                                                           //
//  Hit object for the TRD                                                   //
//                                                                           //
///////////////////////////////////////////////////////////////////////////////

#include "AliTRDhit.h"

ClassImp(AliTRDhit)

//_____________________________________________________________________________
AliTRDhit::AliTRDhit()
  :AliHit()
  ,fDetector(0)
  ,fQ(0)
  ,fTime(0)
{
  //
  // AliTRDhit default constructor
  //

}

//_____________________________________________________________________________
AliTRDhit::AliTRDhit(Int_t shunt, Int_t track, Int_t det
                   , const Float_t * const hits, Int_t q, Float_t time)
  :AliHit(shunt,track)
  ,fDetector((UShort_t) det)
  ,fQ((Short_t) q)
  ,fTime(time)
{
  //
  // Create a TRD hit
  //

  // Store position 
  fX = hits[0];
  fY = hits[1];
  fZ = hits[2];

}

//_____________________________________________________________________________
AliTRDhit::~AliTRDhit()
{
  //
  // AliTRDhit destructor
  //

}
 AliTRDhit.cxx:1
 AliTRDhit.cxx:2
 AliTRDhit.cxx:3
 AliTRDhit.cxx:4
 AliTRDhit.cxx:5
 AliTRDhit.cxx:6
 AliTRDhit.cxx:7
 AliTRDhit.cxx:8
 AliTRDhit.cxx:9
 AliTRDhit.cxx:10
 AliTRDhit.cxx:11
 AliTRDhit.cxx:12
 AliTRDhit.cxx:13
 AliTRDhit.cxx:14
 AliTRDhit.cxx:15
 AliTRDhit.cxx:16
 AliTRDhit.cxx:17
 AliTRDhit.cxx:18
 AliTRDhit.cxx:19
 AliTRDhit.cxx:20
 AliTRDhit.cxx:21
 AliTRDhit.cxx:22
 AliTRDhit.cxx:23
 AliTRDhit.cxx:24
 AliTRDhit.cxx:25
 AliTRDhit.cxx:26
 AliTRDhit.cxx:27
 AliTRDhit.cxx:28
 AliTRDhit.cxx:29
 AliTRDhit.cxx:30
 AliTRDhit.cxx:31
 AliTRDhit.cxx:32
 AliTRDhit.cxx:33
 AliTRDhit.cxx:34
 AliTRDhit.cxx:35
 AliTRDhit.cxx:36
 AliTRDhit.cxx:37
 AliTRDhit.cxx:38
 AliTRDhit.cxx:39
 AliTRDhit.cxx:40
 AliTRDhit.cxx:41
 AliTRDhit.cxx:42
 AliTRDhit.cxx:43
 AliTRDhit.cxx:44
 AliTRDhit.cxx:45
 AliTRDhit.cxx:46
 AliTRDhit.cxx:47
 AliTRDhit.cxx:48
 AliTRDhit.cxx:49
 AliTRDhit.cxx:50
 AliTRDhit.cxx:51
 AliTRDhit.cxx:52
 AliTRDhit.cxx:53
 AliTRDhit.cxx:54
 AliTRDhit.cxx:55
 AliTRDhit.cxx:56
 AliTRDhit.cxx:57
 AliTRDhit.cxx:58
 AliTRDhit.cxx:59
 AliTRDhit.cxx:60
 AliTRDhit.cxx:61
 AliTRDhit.cxx:62
 AliTRDhit.cxx:63
 AliTRDhit.cxx:64
 AliTRDhit.cxx:65
 AliTRDhit.cxx:66
 AliTRDhit.cxx:67