![]() |
![]() |
00001 #include "SimG4Core/Notification/interface/TrackInformation.h" 00002 #include "FWCore/MessageLogger/interface/MessageLogger.h" 00003 00004 #include <iostream> 00005 00006 using std::cout; 00007 using std::endl; 00008 00009 G4Allocator<TrackInformation> TrackInformationAllocator; 00010 00011 void TrackInformation::Print() const { 00012 LogDebug("TrackInformation") << " TrackInformation : storeTrack = " << storeTrack_ << "\n" 00013 << " hasHits = " << hasHits_ << "\n" 00014 << " isPrimary = " << isPrimary_ << "\n" 00015 << " isGeneratedSecondary = " << isGeneratedSecondary_ << "\n" 00016 << " isInHistory = " << isInHistory_ << "\n" 00017 << " idOnCaloSurface = " << getIDonCaloSurface() << "\n" 00018 << " caloIDChecked = " << caloIDChecked() << "\n" 00019 << " idCaloVolume = " << idCaloVolume_ << "\n" 00020 << " idLastVolume = " << idLastVolume_; 00021 } 00022