// ----------------------------------------------------------------------------
// $Id: LCDVXD_Hit.cxx,v 1.1 2001/05/10 17:25:13 toshi Exp $
// ----------------------------------------------------------------------------
//
// $Log: LCDVXD_Hit.cxx,v $
// Revision 1.1  2001/05/10 17:25:13  toshi
// Rename *.C to *.cxx.
//
// Revision 1.2  2001/04/28 23:48:23  toshi
// Start to use CVS.
//
//
///////////////////////////////////////////////////////////////////////////
//                                                                        
// LCDVXD_Hit                                                                
//                                                                        
// The VXD_Hit class is a copy of the Tracker_Hit class with a few        
// cosmetic changes to represent the Vertex Detector section of the       
// detector. The data members have the same meaning as those for the      
// Tracker_Hit class.                                                     
//                                                                        
///////////////////////////////////////////////////////////////////////////

#include "LCDVXD_Hit.h"

ClassImp(LCDVXD_Hit)

///________________________________________________________________________
 LCDVXD_Hit::LCDVXD_Hit(LCDTkID* ID, Double_t *position, Double_t Eloss, 
		 Double_t time,Int_t index){
  //Create a record of an energy deposition in the vertex detector
  m_ID = LCDTkID(ID->GetTag());
  for(Int_t i=0; i<3; i++){
    m_position[i] = position[i];
  }
  m_Eloss = Eloss;
  m_time = time;
  m_index = index;
};












ROOT page - Class index - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.