CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions | Variables
CaloG4Hit.cc File Reference
#include "SimG4CMS/Calo/interface/CaloG4Hit.h"
#include <iostream>

Go to the source code of this file.

Functions

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

Variables

G4Allocator< CaloG4HitCaloG4HitAllocator
 

Function Documentation

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

Definition at line 61 of file CaloG4Hit.cc.

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

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

G4Allocator<CaloG4Hit> CaloG4HitAllocator

Definition at line 8 of file CaloG4Hit.cc.

Referenced by CaloG4Hit::operator delete(), and CaloG4Hit::operator new().