12 #include "G4LogicalVolumeStore.hh"
30 edm::LogInfo(
"MaterialBudget") <<
"MaterialBudgetForward initialized for " <<
detTypes.size() <<
" detector types";
46 edm::LogInfo(
"MaterialBudget") <<
"MaterialBudgetForward Stop condition for " <<
etaRegions.size() <<
" eta regions";
57 const G4LogicalVolumeStore* lvs = G4LogicalVolumeStore::GetInstance();
58 std::vector<G4LogicalVolume*>::const_iterator lvcite;
60 unsigned int kount =
detNames.size();
61 for (
unsigned int ii = 0;
ii < kount; ++
ii)
64 for (lvcite = lvs->begin(); lvcite != lvs->end(); lvcite++) {
66 if (strcmp(
detNames[
ii].c_str(), (*lvcite)->GetName().c_str()) == 0) {
75 edm::LogInfo(
"MaterialBudget") <<
"MaterialBudgetForward::Finds " <<
detNames.size() - kount <<
" out of "
76 <<
detNames.size() <<
" LV addresses";
100 const G4Track* aTrack = (*trk)();
101 const G4ThreeVector& mom = aTrack->GetMomentum();
102 if (mom.theta() != 0) {
111 double theEnergy = aTrack->GetTotalEnergy();
112 int theID = (
int)(aTrack->GetDefinition()->GetPDGEncoding());
113 edm::LogInfo(
"MaterialBudget") <<
"MaterialBudgetHcalHistos: Track " << aTrack->GetTrackID() <<
" Code " << theID
114 <<
" Energy " << theEnergy /
CLHEP::GeV <<
" GeV; Eta " <<
eta_ <<
" Phi "
115 <<
phi_ / CLHEP::deg <<
" PT " << mom.perp() /
CLHEP::GeV <<
" GeV *****";
121 G4Material* material = aStep->GetPreStepPoint()->GetMaterial();
122 double step = aStep->GetStepLength();
123 double radl = material->GetRadlen();
124 double intl = material->GetNuclearInterLength();
126 const G4VTouchable* touch = aStep->GetPreStepPoint()->GetTouchable();
127 unsigned int indx =
detTypes.size();
131 if (
detLevels[nc +
kk] <= (
int)((touch->GetHistoryDepth()) + 1)) {
133 if ((touch->GetVolume(
jj)->GetLogicalVolume()) ==
logVolumes[nc +
kk]) {
149 edm::LogInfo(
"MaterialBudget") <<
"MaterialBudgetForward::Step in "
150 << touch->GetVolume(0)->GetLogicalVolume()->GetName() <<
" Index " << indx <<
" Step "
151 <<
step <<
" RadL " <<
step / radl <<
" IntL " <<
step / intl;
155 G4Track*
track = aStep->GetTrack();
156 track->SetTrackStatus(fStopAndKill);
196 edm::LogInfo(
"MaterialBudget") <<
"MaterialBudgetForward::Volume[" <<
ii <<
"]: " <<
name <<
" eta " <<
eta_
206 if (!
tfile.isAvailable())
208 <<
"please add it to config file";
215 edm::LogInfo(
"MaterialBudget") <<
"MaterialBudgetForward: Booking user "
216 <<
"histos === with " << binEta <<
" bins "
217 <<
"in eta from " <<
minEta <<
" to " <<
maxEta <<
" and " << binPhi <<
" bins "
227 sprintf(
name,
"%d",
i + 100);
228 sprintf(
title,
"MB(X0) prof Eta in %s", named.c_str());
230 sprintf(
name,
"%d",
i + 200);
231 sprintf(
title,
"MB(L0) prof Eta in %s", named.c_str());
233 sprintf(
name,
"%d",
i + 300);
234 sprintf(
title,
"MB(Step) prof Eta in %s", named.c_str());
236 sprintf(
name,
"%d",
i + 400);
237 sprintf(
title,
"Eta in %s", named.c_str());
239 sprintf(
name,
"%d",
i + 500);
240 sprintf(
title,
"MB(X0) prof Eta Phi in %s", named.c_str());
242 sprintf(
name,
"%d",
i + 600);
243 sprintf(
title,
"MB(L0) prof Eta Phi in %s", named.c_str());
245 sprintf(
name,
"%d",
i + 700);
246 sprintf(
title,
"MB(Step) prof Eta Phi in %s", named.c_str());
248 sprintf(
name,
"%d",
i + 800);
249 sprintf(
title,
"Eta vs Phi in %s", named.c_str());
253 edm::LogInfo(
"MaterialBudget") <<
"MaterialBudgetForward: Booking user "
254 <<
"histos done ===";
258 G4ThreeVector hitPoint = aStep->GetPreStepPoint()->GetPosition();
259 if (aStep->GetPostStepPoint() !=
nullptr)
260 hitPoint = aStep->GetPostStepPoint()->GetPosition();
261 double rr = hitPoint.perp();
267 edm::LogInfo(
"MaterialBudget") <<
" MaterialBudgetForward::Eta " <<
eta_ <<
" in Region[" <<
ii <<
"] with "
280 edm::LogInfo(
"MaterialBudget") <<
" MaterialBudgetForward::Stop after R = " <<
rr <<
" and Z = " <<
zz;
286 edm::LogInfo(
"MaterialBudget") <<
" MaterialBudgetForward:: R = " <<
rr <<
" and Z = " <<
zz <<
" Flag " <<
flag;