#include "LCDVXD_Hit.h"
///////////////////////////////////////////////////////////////////////////
//
// 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.
//
///////////////////////////////////////////////////////////////////////////
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.