CMS 3D CMS Logo

Classes | Functions

/data/refman/pasoursint/CMSSW_4_2_9_HLT1_bphpatch4/src/SimG4CMS/Forward/interface/TotemG4Hit.h File Reference

#include "G4VHit.hh"
#include "DataFormats/Math/interface/Point3D.h"
#include <boost/cstdint.hpp>
#include <iostream>

Go to the source code of this file.

Classes

class  TotemG4Hit

Functions

std::ostream & operator<< (std::ostream &, const TotemG4Hit &)

Function Documentation

std::ostream& operator<< ( std::ostream &  ,
const TotemG4Hit  
)

Definition at line 186 of file TotemG4Hit.cc.

References TotemG4Hit::getEnergyLoss(), TotemG4Hit::getEntry(), TotemG4Hit::getIncidentEnergy(), TotemG4Hit::getTimeSliceID(), TotemG4Hit::getTrackID(), and TotemG4Hit::getUnitID().

                                                              {
  os << " Data of this TotemG4Hit are:\n" 
     << " Time slice ID: " << hit.getTimeSliceID() << "\n"
     << " EnergyDeposit = " << hit.getEnergyLoss() << "\n"
     << " Energy of primary particle (ID = " << hit.getTrackID()
     << ") = " << hit.getIncidentEnergy() << " (MeV)" << "\n"
     << " Entry point in Totem unit number " << hit.getUnitID()
     << " is: " << hit.getEntry() << " (mm)" << "\n"
     << "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n";
  return os;
}