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