#include <Histograms.h>
Definition at line 669 of file Histograms.h.
HRes4DHit::HRes4DHit | ( | std::string | name_, |
DQMStore * | dbe_, | ||
bool | doall = true , |
||
bool | local = true |
||
) | [inline] |
Definition at line 671 of file Histograms.h.
References _doall, DQMStore::book1D(), DQMStore::book2D(), hPullAlpha, hPullAlphaVsEta, hPullAlphaVsPhi, hPullBeta, hPullBetaRZ, hPullBetaVsEta, hPullBetaVsEtaRZ, hPullBetaVsPhi, hPullBetaVsPhiRZ, hPullX, hPullXVsEta, hPullXVsPhi, hPullY, hPullYRZ, hPullYVsEta, hPullYVsEtaRZ, hPullYVsPhi, hPullYVsPhiRZ, hRecAlpha, hRecBeta, hRecBetaRZ, hRecVsSimAlpha, hRecVsSimBeta, hRecVsSimBetaRZ, hResAlpha, hResAlphaVsEta, hResAlphaVsPhi, hResAlphaVsResBeta, hResAlphaVsResX, hResAlphaVsResY, hResBeta, hResBetaRZ, hResBetaVsEta, hResBetaVsEtaRZ, hResBetaVsPhi, hResBetaVsPhiRZ, hResX, hResXVsEta, hResXVsPhi, hResXVsResY, hResY, hResYRZ, hResYVsEta, hResYVsEtaRZ, hResYVsPhi, hResYVsPhiRZ, hSimAlpha, hSimBeta, hSimBetaRZ, and DQMStore::setCurrentFolder().
{ std::string pre ="4D_"; pre += name_; _doall = doall; if(local) dbe_->setCurrentFolder("DT/4DSegments/"); else dbe_->setCurrentFolder("DT/4DSegments/Res/"); if(doall){ hRecAlpha=0;hRecAlpha = dbe_->book1D (pre+"_hRecAlpha", "4D RecHit alpha (RPhi) distribution;#alpha^{x} (rad)", 100, -3.5, 3.5); hRecBeta=0;hRecBeta = dbe_->book1D (pre+"_hRecBeta", "4D RecHit beta distribution:#alpha^{y} (rad)", 100, -3.5, 3.5); hSimAlpha=0;hSimAlpha = dbe_->book1D(pre+"_hSimAlpha", "4D segment from SimHit alpha (RPhi) distribution;i#alpha^{x} (rad)", 100, -3.5, 3.5); hSimBeta=0;hSimBeta = dbe_->book1D(pre+"_hSimBeta", "4D segment from SimHit beta distribution;#alpha^{y} (rad)", 100, -3.5, 3.5); hRecVsSimAlpha=0;hRecVsSimAlpha = dbe_->book2D(pre+"_hRecVsSimAlpha", "4D segment rec alpha {v}s sim alpha (RPhi);#alpha^{x} (rad)", 100, -3.5, 3.5, 100, -3.5, 3.5); hRecVsSimBeta=0;hRecVsSimBeta = dbe_->book2D(pre+"_hRecVsSimBeta", "4D segment rec beta vs sim beta (RZ);#alpha^{y} (rad)", 100, -3.5, 3.5, 100, -3.5, 3.5); hResAlphaVsEta=0;hResAlphaVsEta = dbe_->book2D (pre+"_hResAlphaVsEta", "4D RecHit residual on #alpha_x direction vs eta;#eta;#alpha^{x}_{rec}-#alpha^{x}_{sim} (rad)", 100, -2.5, 2.5, 100, -0.025, 0.025); hResAlphaVsPhi=0;hResAlphaVsPhi = dbe_->book2D (pre+"_hResAlphaVsPhi", "4D RecHit residual on #alpha_x direction vs phi (rad);#phi (rad);#alpha^{x}_{rec}-#alpha^{x}_{sim} (rad)", 100, -3.2, 3.2, 100, -0.025, 0.025); hResBetaVsEta=0;hResBetaVsEta = dbe_->book2D (pre+"_hResBetaVsEta", "4D RecHit residual on beta direction vs eta;#eta;#alpha^{y}_{rec}-#alpha^{y}_{sim} (rad)", 100, -2.5, 2.5, 200, -0.2, 0.2); hResBetaVsPhi=0;hResBetaVsPhi = dbe_->book2D (pre+"_hResBetaVsPhi", "4D RecHit residual on beta direction vs phi;#phi (rad);#alpha^{y}_{rec}-#alpha^{y}_{sim} (rad)", 100, -3.2, 3.2, 200, -0.2, 0.2); hResXVsEta=0;hResXVsEta = dbe_->book2D (pre+"_hResXVsEta", "4D RecHit residual on position (x) in chamber vs eta;#eta;x_{rec}-x_{sim} (cm)", 100, -2.5, 2.5, 150, -0.3, 0.3); hResXVsPhi=0;hResXVsPhi= dbe_->book2D (pre+"_hResXVsPhi", "4D RecHit residual on position (x) in chamber vs phi;#phi (rad);x_{rec}-x_{sim} (cm)", 100, -3.2, 3.2, 150, -0.3, 0.3); hResYVsEta=0;hResYVsEta = dbe_->book2D (pre+"_hResYVsEta", "4D RecHit residual on position (y) in chamber vs eta;#eta;y_{rec}-y_{sim} (cm)", 100, -2.5, 2.5, 150, -0.6, 0.6); hResYVsPhi=0;hResYVsPhi = dbe_->book2D (pre+"_hResYVsPhi", "4D RecHit residual on position (y) in chamber vs phi;#phi (rad);y_{rec}-y_{sim} (cm)", 100, -3.2, 3.2, 150, -0.6, 0.6); hResAlphaVsResBeta=0;hResAlphaVsResBeta = dbe_->book2D(pre+"_hResAlphaVsResBeta", "4D RecHit residual on alpha vs residual on beta", 200, -0.3, 0.3, 500, -0.15, 0.15); hResXVsResY=0;hResXVsResY= dbe_->book2D(pre+"_hResXVsResY", "4D RecHit residual on X vs residual on Y", 150, -0.6, 0.6, 50, -0.3, 0.3); hResAlphaVsResX=0;hResAlphaVsResX = dbe_->book2D(pre+"_hResAlphaVsResX", "4D RecHit residual on alpha vs residual on x", 150, -0.3, 0.3, 500, -0.15, 0.15); hResAlphaVsResY=0;hResAlphaVsResY = dbe_->book2D(pre+"_hResAlphaVsResY", "4D RecHit residual on alpha vs residual on y", 150, -0.6, 0.6, 500, -0.15, 0.15); hRecBetaRZ=0;hRecBetaRZ = dbe_->book1D (pre+"_hRecBetaRZ", "4D RecHit beta distribution:#alpha^{y} (rad)", 100, -3.5, 3.5); hSimBetaRZ=0;hSimBetaRZ = dbe_->book1D(pre+"_hSimBetaRZ", "4D segment from SimHit beta distribution in RZ SL;#alpha^{y} (rad)", 100, -3.5, 3.5); hRecVsSimBetaRZ=0;hRecVsSimBetaRZ = dbe_->book2D(pre+"_hRecVsSimBetaRZ", "4D segment rec beta vs sim beta (RZ) in RZ SL;#alpha^{y} (rad)", 100, -3.5, 3.5, 100, -3.5, 3.5); hResBetaVsEtaRZ=0;hResBetaVsEtaRZ = dbe_->book2D (pre+"_hResBetaVsEtaRZ", "4D RecHit residual on beta direction vs eta;#eta in RZ SL;#alpha^{y}_{rec}-#alpha^{y}_{sim} (rad)", 100, -2.5, 2.5, 200, -0.2, 0.2); hResBetaVsPhiRZ=0;hResBetaVsPhiRZ = dbe_->book2D (pre+"_hResBetaVsPhiRZ", "4D RecHit residual on beta direction vs phi in RZ SL;#phi (rad);#alpha^{y}_{rec}-#alpha^{y}_{sim} (rad)", 100, -3.2, 3.2, 200, -0.2, 0.2); hResYVsEtaRZ=0;hResYVsEtaRZ = dbe_->book2D (pre+"_hResYVsEtaRZ", "4D RecHit residual on position (y) in chamber vs eta in RZ SL;#eta;y_{rec}-y_{sim} (cm)", 100, -2.5, 2.5, 150, -0.6, 0.6); hResYVsPhiRZ=0;hResYVsPhiRZ = dbe_->book2D (pre+"_hResYVsPhiRZ", "4D RecHit residual on position (y) in chamber vs phi in RZ SL;#phi (rad);y_{rec}-y_{sim} (cm)", 100, -3.2, 3.2, 150, -0.6, 0.6); if(!local) dbe_->setCurrentFolder("DT/4DSegments/Pull/"); hPullAlphaVsEta=0;hPullAlphaVsEta = dbe_->book2D (pre+"_hPullAlphaVsEta", "4D RecHit pull on #alpha_x direction vs eta;#eta;(#alpha^{x}_{rec}-#alpha^{x}_{sim})/#sigma", 100, -2.5, 2.5, 100, -5, 5); hPullAlphaVsPhi=0;hPullAlphaVsPhi = dbe_->book2D (pre+"_hPullAlphaVsPhi", "4D RecHit pull on #alpha_x direction vs phi (rad);#phi (rad);(#alpha^{x}_{rec}-#alpha^{x}_{sim})/#sigma", 100, -3.2, 3.2, 100, -5, 5); hPullBetaVsEta=0;hPullBetaVsEta = dbe_->book2D (pre+"_hPullBetaVsEta", "4D RecHit pull on beta direction vs eta;#eta;(#alpha^{y}_{rec}-#alpha^{y}_{sim})/#sigma", 100, -2.5, 2.5, 200, -5, 5); hPullBetaVsPhi=0;hPullBetaVsPhi = dbe_->book2D (pre+"_hPullBetaVsPhi", "4D RecHit pull on beta direction vs phi;#phi (rad);(#alpha^{y}_{rec}-#alpha^{y}_{sim})/#sigma", 100, -3.2, 3.2, 200, -5, 5); hPullXVsEta=0;hPullXVsEta = dbe_->book2D (pre+"_hPullXVsEta", "4D RecHit pull on position (x) in chamber vs eta;#eta;(x_{rec}-x_{sim})#sigma", 100, -2.5, 2.5, 150, -5, 5); hPullXVsPhi=0;hPullXVsPhi = dbe_->book2D (pre+"_hPullXVsPhi", "4D RecHit pull on position (x) in chamber vs phi;#phi (rad);(x_{rec}-x_{sim})/#sigma", 100, -3.2, 3.2, 150, -5, 5); hPullYVsEta=0;hPullYVsEta = dbe_->book2D (pre+"_hPullYVsEta", "4D RecHit pull on position (y) in chamber vs eta;#eta;(y_{rec}-y_{sim})/#sigma", 100, -2.5, 2.5, 150, -5, 5); hPullYVsPhi=0;hPullYVsPhi = dbe_->book2D (pre+"_hPullYVsPhi", "4D RecHit pull on position (y) in chamber vs phi;#phi (rad);(y_{rec}-y_{sim})/#sigma", 100, -3.2, 3.2, 150, -5, 5); hPullBetaVsEtaRZ=0;hPullBetaVsEtaRZ = dbe_->book2D (pre+"_hPullBetaVsEtaRZ", "4D RecHit pull on beta direction vs eta;#eta in RZ SL;(#alpha^{y}_{rec}-#alpha^{y}_{sim})/#sigma", 100, -2.5, 2.5, 200, -5, 5); hPullBetaVsPhiRZ=0;hPullBetaVsPhiRZ = dbe_->book2D (pre+"_hPullBetaVsPhiRZ", "4D RecHit pull on beta direction vs phi in RZ SL;#phi (rad);(#alpha^{y}_{rec}-#alpha^{y}_{sim})/#sigma", 100, -3.2, 3.2, 200, -5, 5); hPullYVsEtaRZ=0;hPullYVsEtaRZ = dbe_->book2D (pre+"_hPullYVsEtaRZ", "4D RecHit pull on position (y) in chamber vs eta in RZ SL;#eta;(y_{rec}-y_{sim})/#sigma", 100, -2.5, 2.5, 150, -5, 5); hPullYVsPhiRZ=0;hPullYVsPhiRZ = dbe_->book2D (pre+"_hPullYVsPhiRZ", "4D RecHit pull on position (y) in chamber vs phi in RZ SL;#phi (rad);(y_{rec}-y_{sim})/#sigma", 100, -3.2, 3.2, 150, -5, 5); } if(!local) dbe_->setCurrentFolder("DT/4DSegments/Res/"); hResAlpha=0;hResAlpha = dbe_->book1D (pre+"_hResAlpha", "4D RecHit residual on #alpha_x direction;#alpha^{x}_{rec}-#alpha^{x}_{sim} (rad)", 200, -0.015, 0.015); hResBeta=0;hResBeta = dbe_->book1D (pre+"_hResBeta", "4D RecHit residual on beta direction;#alpha^{y}_{rec}-#alpha^{y}_{sim} (rad)", 200, -0.1, 0.1); hResX=0;hResX = dbe_->book1D (pre+"_hResX", "4D RecHit residual on position (x) in chamber;x_{rec}-x_{sim} (cm)", 150, -0.15, 0.15); hResY=0;hResY = dbe_->book1D (pre+"_hResY", "4D RecHit residual on position (y) in chamber;y_{rec}-y_{sim} (cm)", 150, -0.6, 0.6); // histo in rz SL reference frame. hResBetaRZ=0;hResBetaRZ = dbe_->book1D (pre+"_hResBetaRZ", "4D RecHit residual on beta direction in RZ SL;#alpha^{y}_{rec}-#alpha^{y}_{sim} (rad)", 200, -0.1, 0.1); hResYRZ=0;hResYRZ = dbe_->book1D (pre+"_hResYRZ", "4D RecHit residual on position (y) in chamber in RZ SL;y_{rec}-y_{sim} (cm)", 150, -0.15, 0.15); // Pulls // Pulls if(!local) dbe_->setCurrentFolder("DT/4DSegments/Pull/"); hPullAlpha=0;hPullAlpha = dbe_->book1D (pre+"_hPullAlpha", "4D RecHit pull on #alpha_x direction;(#alpha^{x}_{rec}-#alpha^{x}_{sim})/#sigma", 200, -5, 5); hPullBeta=0;hPullBeta = dbe_->book1D (pre+"_hPullBeta", "4D RecHit pull on beta direction;(#alpha^{y}_{rec}-#alpha^{y}_{sim})/#sigma", 200, -5, 5); hPullX=0;hPullX = dbe_->book1D (pre+"_hPullX", "4D RecHit pull on position (x) in chamber;(x_{rec}-x_{sim})#sigma", 150, -5, 5); hPullY=0;hPullY = dbe_->book1D (pre+"_hPullY", "4D RecHit pull on position (y) in chamber;(y_{rec}-y_{sim})/#sigma", 150, -5, 5); hPullBetaRZ=0;hPullBetaRZ = dbe_->book1D (pre+"_hPullBetaRZ", "4D RecHit pull on beta direction in RZ SL;(#alpha^{y}_{rec}-#alpha^{y}_{sim})/#sigma", 200, -5, 5); hPullYRZ=0;hPullYRZ = dbe_->book1D (pre+"_hPullYRZ", "4D RecHit pull on position (y) in chamber in RZ SL;(y_{rec}-y_{sim})/#sigma", 150, -5, 5); }
void HRes4DHit::Fill | ( | float | simDirectionAlpha, |
float | recDirectionAlpha, | ||
float | simDirectionBeta, | ||
float | recDirectionBeta, | ||
float | simX, | ||
float | recX, | ||
float | simY, | ||
float | recY, | ||
float | simEta, | ||
float | simPhi, | ||
float | recYRZ, | ||
float | simYRZ, | ||
float | recBetaRZ, | ||
float | simBetaRZ, | ||
float | sigmaAlpha, | ||
float | sigmaBeta, | ||
float | sigmaX, | ||
float | sigmaY, | ||
float | sigmaBetaRZ, | ||
float | sigmaYRZ | ||
) | [inline] |
Definition at line 907 of file Histograms.h.
References _doall, MonitorElement::Fill(), hPullAlpha, hPullAlphaVsEta, hPullAlphaVsPhi, hPullBeta, hPullBetaRZ, hPullBetaVsEta, hPullBetaVsEtaRZ, hPullBetaVsPhi, hPullBetaVsPhiRZ, hPullX, hPullXVsEta, hPullXVsPhi, hPullY, hPullYRZ, hPullYVsEta, hPullYVsEtaRZ, hPullYVsPhi, hPullYVsPhiRZ, hRecAlpha, hRecBeta, hRecBetaRZ, hRecVsSimAlpha, hRecVsSimBeta, hRecVsSimBetaRZ, hResAlpha, hResAlphaVsEta, hResAlphaVsPhi, hResAlphaVsResBeta, hResAlphaVsResX, hResAlphaVsResY, hResBeta, hResBetaRZ, hResBetaVsEta, hResBetaVsEtaRZ, hResBetaVsPhi, hResBetaVsPhiRZ, hResX, hResXVsEta, hResXVsPhi, hResXVsResY, hResY, hResYRZ, hResYVsEta, hResYVsEtaRZ, hResYVsPhi, hResYVsPhiRZ, hSimAlpha, hSimBeta, and hSimBetaRZ.
Referenced by DTSegment4DQuality::analyze().
{ float resAlpha = recDirectionAlpha - simDirectionAlpha; hResAlpha->Fill(resAlpha); hPullAlpha->Fill(resAlpha/sigmaAlpha); float resBeta = recDirectionBeta - simDirectionBeta; hResBeta->Fill(resBeta); hPullBeta->Fill(resBeta/sigmaBeta); float resX = recX - simX; hResX->Fill(resX); hPullX->Fill(resX/sigmaX); float resY = recY - simY; hResY->Fill(resY); hPullY->Fill(resY/sigmaY); float resBetaRZ = recBetaRZ - simBetaRZ; hResBetaRZ->Fill(resBetaRZ); hPullBetaRZ->Fill(resBetaRZ/sigmaBetaRZ); float resYRZ = recYRZ - simYRZ; hResYRZ->Fill(resYRZ); hPullYRZ->Fill(resYRZ/sigmaYRZ); if(_doall){ hRecAlpha->Fill(recDirectionAlpha); hRecBeta->Fill(recDirectionBeta); hSimAlpha->Fill(simDirectionAlpha); hSimBeta->Fill(simDirectionBeta); hRecVsSimAlpha->Fill(simDirectionAlpha, recDirectionAlpha); hRecVsSimBeta->Fill(simDirectionBeta, recDirectionBeta); hResAlphaVsEta->Fill(simEta, resAlpha); hResAlphaVsPhi->Fill(simPhi, resAlpha); hPullAlphaVsEta->Fill(simEta, resAlpha/sigmaAlpha); hPullAlphaVsPhi->Fill(simPhi, resAlpha/sigmaAlpha); hResBetaVsEta->Fill(simEta, resBeta); hResBetaVsPhi->Fill(simPhi, resBeta); hPullBetaVsEta->Fill(simEta, resBeta/sigmaBeta); hPullBetaVsPhi->Fill(simPhi, resBeta/sigmaBeta); hResXVsEta->Fill(simEta, resX); hResXVsPhi->Fill(simPhi, resX); hPullXVsEta->Fill(simEta, resX/sigmaX); hPullXVsPhi->Fill(simPhi, resX/sigmaX); hResYVsEta->Fill(simEta, resY); hResYVsPhi->Fill(simPhi, resY); hPullYVsEta->Fill(simEta, resY/sigmaY); hPullYVsPhi->Fill(simPhi, resY/sigmaY); hResAlphaVsResBeta->Fill(resBeta, resAlpha); hResXVsResY->Fill(resY, resX); hResAlphaVsResX->Fill(resX, resAlpha); hResAlphaVsResY->Fill(resY, resAlpha); // RZ SuperLayer hRecBetaRZ->Fill(recBetaRZ); hSimBetaRZ->Fill(simBetaRZ); hRecVsSimBetaRZ->Fill(simBetaRZ, recBetaRZ); hResBetaVsEtaRZ->Fill(simEta, resBetaRZ); hResBetaVsPhiRZ->Fill(simPhi, resBetaRZ); hPullBetaVsEtaRZ->Fill(simEta, resBetaRZ/sigmaBetaRZ); hPullBetaVsPhiRZ->Fill(simPhi, resBetaRZ/sigmaBetaRZ); hResYVsEtaRZ->Fill(simEta, resYRZ); hResYVsPhiRZ->Fill(simPhi, resYRZ); hPullYVsEtaRZ->Fill(simEta, resYRZ/sigmaYRZ); hPullYVsPhiRZ->Fill(simPhi, resYRZ/sigmaYRZ); } }
bool HRes4DHit::_doall |
Definition at line 1114 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1076 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1077 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1078 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1080 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1107 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1081 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1108 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1082 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1109 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1084 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1085 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1086 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1088 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1111 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1089 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1112 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1090 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1113 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1046 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1047 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1093 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1052 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1053 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1097 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1055 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1056 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1057 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1071 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1073 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1074 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1059 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1099 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1060 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1100 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1061 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1101 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1063 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1064 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1065 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1072 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1067 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1103 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1068 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1104 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1069 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1105 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1049 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1050 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
Definition at line 1095 of file Histograms.h.
Referenced by Fill(), and HRes4DHit().
TString HRes4DHit::name |
Definition at line 1115 of file Histograms.h.