CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch1/src/SimG4Core/Notification/src/TrackInformation.cc

Go to the documentation of this file.
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