CMS 3D CMS Logo

Functions | Variables
CaloG4Hit.cc File Reference
#include "SimG4CMS/Calo/interface/CaloG4Hit.h"
#include <iostream>
#include "G4SystemOfUnits.hh"

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const CaloG4Hit &hit)
 

Variables

G4ThreadLocal G4Allocator< CaloG4Hit > * fpCaloG4HitAllocator = 0
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const CaloG4Hit hit 
)

Definition at line 62 of file CaloG4Hit.cc.

References CaloG4Hit::getEM(), CaloG4Hit::getEntry(), CaloG4Hit::getEntryLocal(), CaloG4Hit::getHadr(), CaloG4Hit::getID(), CaloG4Hit::getIncidentEnergy(), CaloG4Hit::getPosition(), and MeV.

Referenced by CaloG4Hit::operator delete().

62  {
63  os << " Data of this CaloG4Hit are:" << "\n"
64  << " HitID: " << hit.getID() << "\n"
65  << " EnergyDeposit of EM particles = " << hit.getEM() << "\n"
66  << " EnergyDeposit of HD particles = " << hit.getHadr() << "\n"
67  << " Energy of primary particle = " << hit.getIncidentEnergy()/MeV
68  << " (MeV)"<< "\n"
69  << " Entry point in Calorimeter (global) : " << hit.getEntry()
70  << " (local) " << hit.getEntryLocal() << "\n"
71  << " Position of Hit (global) : " << hit.getPosition() << "\n"
72  << "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n";
73  return os;
74 }
math::XYZPoint getPosition() const
Definition: CaloG4Hit.h:56
double getIncidentEnergy() const
Definition: CaloG4Hit.h:65
CaloHitID getID() const
Definition: CaloG4Hit.h:74
const double MeV
double getEM() const
Definition: CaloG4Hit.h:59
math::XYZPoint getEntryLocal() const
Definition: CaloG4Hit.h:53
math::XYZPoint getEntry() const
Definition: CaloG4Hit.h:50
double getHadr() const
Definition: CaloG4Hit.h:62

Variable Documentation

G4ThreadLocal G4Allocator<CaloG4Hit>* fpCaloG4HitAllocator = 0