LArSoft  v10_04_05
Liquid Argon Software toolkit - https://larsoft.org/
trkf::SeedAna::MCHists Struct Reference

Public Member Functions

 MCHists (const std::string &subdir)
 

Public Attributes

TH2F * fHduvcosth {nullptr}
 
TH1F * fHcosth {nullptr}
 
TH1F * fHmcu {nullptr}
 
TH1F * fHmcv {nullptr}
 
TH1F * fHmcw {nullptr}
 
TH1F * fHmcdudw {nullptr}
 
TH1F * fHmcdvdw {nullptr}
 
TH1F * fHmcstartx {nullptr}
 
TH1F * fHmcstarty {nullptr}
 
TH1F * fHmcstartz {nullptr}
 
TH1F * fHmcendx {nullptr}
 
TH1F * fHmcendy {nullptr}
 
TH1F * fHmcendz {nullptr}
 
TH1F * fHmctheta {nullptr}
 
TH1F * fHmcphi {nullptr}
 
TH1F * fHmctheta_xz {nullptr}
 
TH1F * fHmctheta_yz {nullptr}
 
TH1F * fHmcmom {nullptr}
 
TH1F * fHmclen {nullptr}
 
TH1F * fHmstartx {nullptr}
 
TH1F * fHmstarty {nullptr}
 
TH1F * fHmstartz {nullptr}
 
TH1F * fHmendx {nullptr}
 
TH1F * fHmendy {nullptr}
 
TH1F * fHmendz {nullptr}
 
TH1F * fHmtheta {nullptr}
 
TH1F * fHmphi {nullptr}
 
TH1F * fHmtheta_xz {nullptr}
 
TH1F * fHmtheta_yz {nullptr}
 
TH1F * fHmmom {nullptr}
 
TH1F * fHmlen {nullptr}
 
TH1F * fHgstartx {nullptr}
 
TH1F * fHgstarty {nullptr}
 
TH1F * fHgstartz {nullptr}
 
TH1F * fHgendx {nullptr}
 
TH1F * fHgendy {nullptr}
 
TH1F * fHgendz {nullptr}
 
TH1F * fHgtheta {nullptr}
 
TH1F * fHgphi {nullptr}
 
TH1F * fHgtheta_xz {nullptr}
 
TH1F * fHgtheta_yz {nullptr}
 
TH1F * fHgmom {nullptr}
 
TH1F * fHglen {nullptr}
 
TH1F * fHmulstartx {nullptr}
 
TH1F * fHmulstarty {nullptr}
 
TH1F * fHmulstartz {nullptr}
 
TH1F * fHmulendx {nullptr}
 
TH1F * fHmulendy {nullptr}
 
TH1F * fHmulendz {nullptr}
 
TH1F * fHmultheta {nullptr}
 
TH1F * fHmulphi {nullptr}
 
TH1F * fHmultheta_xz {nullptr}
 
TH1F * fHmultheta_yz {nullptr}
 
TH1F * fHmulmom {nullptr}
 
TH1F * fHmullen {nullptr}
 
TH1F * fHestartx {nullptr}
 
TH1F * fHestarty {nullptr}
 
TH1F * fHestartz {nullptr}
 
TH1F * fHeendx {nullptr}
 
TH1F * fHeendy {nullptr}
 
TH1F * fHeendz {nullptr}
 
TH1F * fHetheta {nullptr}
 
TH1F * fHephi {nullptr}
 
TH1F * fHetheta_xz {nullptr}
 
TH1F * fHetheta_yz {nullptr}
 
TH1F * fHemom {nullptr}
 
TH1F * fHelen {nullptr}
 

Detailed Description

Definition at line 247 of file SeedAna_module.cc.

Constructor & Destructor Documentation

trkf::SeedAna::MCHists::MCHists ( const std::string &  subdir)

Definition at line 393 of file SeedAna_module.cc.

References dir.

394  {
395  // Get services.
396 
398  auto const& tpc = art::ServiceHandle<geo::Geometry const>()->TPC({0, 0});
399 
400  // Make histogram directory.
401 
402  art::TFileDirectory topdir = tfs->mkdir("seedana", "SeedAna histograms");
403  art::TFileDirectory dir = topdir.mkdir(subdir);
404 
405  // Book histograms.
406 
407  fHduvcosth =
408  dir.make<TH2F>("duvcosth", "Delta(uv) vs. Colinearity", 100, 0.95, 1., 100, 0., 1.);
409  fHcosth = dir.make<TH1F>("colin", "Colinearity", 100, 0.95, 1.);
410  fHmcu = dir.make<TH1F>("mcu", "MC Truth U", 100, -5., 5.);
411  fHmcv = dir.make<TH1F>("mcv", "MC Truth V", 100, -5., 5.);
412  fHmcw = dir.make<TH1F>("mcw", "MC Truth W", 100, -20., 20.);
413  fHmcdudw = dir.make<TH1F>("mcdudw", "MC Truth U Slope", 100, -0.2, 0.2);
414  fHmcdvdw = dir.make<TH1F>("mcdvdw", "MV Truth V Slope", 100, -0.2, 0.2);
415 
416  fHmcstartx = dir.make<TH1F>(
417  "mcxstart", "MC X Start Position", 10, -2. * tpc.HalfWidth(), 4. * tpc.HalfWidth());
418  fHmcstarty =
419  dir.make<TH1F>("mcystart", "MC Y Start Position", 10, -tpc.HalfHeight(), tpc.HalfHeight());
420  fHmcstartz = dir.make<TH1F>("mczstart", "MC Z Start Position", 10, 0., tpc.Length());
421  fHmcendx = dir.make<TH1F>(
422  "mcxend", "MC X End Position", 10, -2. * tpc.HalfWidth(), 4. * tpc.HalfWidth());
423  fHmcendy =
424  dir.make<TH1F>("mcyend", "MC Y End Position", 10, -tpc.HalfHeight(), tpc.HalfHeight());
425  fHmcendz = dir.make<TH1F>("mczend", "MC Z End Position", 10, 0., tpc.Length());
426  fHmctheta = dir.make<TH1F>("mctheta", "MC Theta", 20, 0., 3.142);
427  fHmcphi = dir.make<TH1F>("mcphi", "MC Phi", 10, -3.142, 3.142);
428  fHmctheta_xz = dir.make<TH1F>("mctheta_xz", "MC Theta_xz", 40, -3.142, 3.142);
429  fHmctheta_yz = dir.make<TH1F>("mctheta_yz", "MC Theta_yz", 40, -3.142, 3.142);
430  fHmcmom = dir.make<TH1F>("mcmom", "MC Momentum", 10, 0., 10.);
431  fHmclen = dir.make<TH1F>("mclen", "MC Particle Length", 10, 0., 1.1 * tpc.Length());
432 
433  fHmstartx = dir.make<TH1F>(
434  "mxstart", "Matched X Start Position", 10, -2. * tpc.HalfWidth(), 4. * tpc.HalfWidth());
435  fHmstarty = dir.make<TH1F>(
436  "mystart", "Matched Y Start Position", 10, -tpc.HalfHeight(), tpc.HalfHeight());
437  fHmstartz = dir.make<TH1F>("mzstart", "Matched Z Start Position", 10, 0., tpc.Length());
438  fHmendx = dir.make<TH1F>(
439  "mxend", "Matched X End Position", 10, -2. * tpc.HalfWidth(), 4. * tpc.HalfWidth());
440  fHmendy =
441  dir.make<TH1F>("myend", "Matched Y End Position", 10, -tpc.HalfHeight(), tpc.HalfHeight());
442  fHmendz = dir.make<TH1F>("mzend", "Matched Z End Position", 10, 0., tpc.Length());
443  fHmtheta = dir.make<TH1F>("mtheta", "Matched Theta", 20, 0., 3.142);
444  fHmphi = dir.make<TH1F>("mphi", "Matched Phi", 10, -3.142, 3.142);
445  fHmtheta_xz = dir.make<TH1F>("mtheta_xz", "Matched Theta_xz", 40, -3.142, 3.142);
446  fHmtheta_yz = dir.make<TH1F>("mtheta_yz", "Matched Theta_yz", 40, -3.142, 3.142);
447  fHmmom = dir.make<TH1F>("mmom", "Matched Momentum", 10, 0., 10.);
448  fHmlen = dir.make<TH1F>("mlen", "Matched Particle Length", 10, 0., 1.1 * tpc.Length());
449 
450  fHgstartx = dir.make<TH1F>(
451  "gxstart", "Good X Start Position", 10, -2. * tpc.HalfWidth(), 4. * tpc.HalfWidth());
452  fHgstarty =
453  dir.make<TH1F>("gystart", "Good Y Start Position", 10, -tpc.HalfHeight(), tpc.HalfHeight());
454  fHgstartz = dir.make<TH1F>("gzstart", "Good Z Start Position", 10, 0., tpc.Length());
455  fHgendx = dir.make<TH1F>(
456  "gxend", "Good X End Position", 10, -2. * tpc.HalfWidth(), 4. * tpc.HalfWidth());
457  fHgendy =
458  dir.make<TH1F>("gyend", "Good Y End Position", 10, -tpc.HalfHeight(), tpc.HalfHeight());
459  fHgendz = dir.make<TH1F>("gzend", "Good Z End Position", 10, 0., tpc.Length());
460  fHgtheta = dir.make<TH1F>("gtheta", "Good Theta", 20, 0., 3.142);
461  fHgphi = dir.make<TH1F>("gphi", "Good Phi", 10, -3.142, 3.142);
462  fHgtheta_xz = dir.make<TH1F>("gtheta_xz", "Good Theta_xz", 40, -3.142, 3.142);
463  fHgtheta_yz = dir.make<TH1F>("gtheta_yz", "Good Theta_yz", 40, -3.142, 3.142);
464  fHgmom = dir.make<TH1F>("gmom", "Good Momentum", 10, 0., 10.);
465  fHglen = dir.make<TH1F>("glen", "Good Particle Length", 10, 0., 1.1 * tpc.Length());
466 
467  fHmulstartx = dir.make<TH1F>("mulxstart",
468  "Multiplicity vs. X Start Position",
469  10,
470  -2. * tpc.HalfWidth(),
471  4. * tpc.HalfWidth());
472  fHmulstarty = dir.make<TH1F>(
473  "mulystart", "Multiplicity vs. Y Start Position", 10, -tpc.HalfHeight(), tpc.HalfHeight());
474  fHmulstartz =
475  dir.make<TH1F>("mulzstart", "Multiplicity vs. Z Start Position", 10, 0., tpc.Length());
476  fHmulendx = dir.make<TH1F>("mulxend",
477  "Multiplicity vs. X End Position",
478  10,
479  -2. * tpc.HalfWidth(),
480  4. * tpc.HalfWidth());
481  fHmulendy = dir.make<TH1F>(
482  "mulyend", "Multiplicity vs. Y End Position", 10, -tpc.HalfHeight(), tpc.HalfHeight());
483  fHmulendz = dir.make<TH1F>("mulzend", "Multiplicity vs. Z End Position", 10, 0., tpc.Length());
484  fHmultheta = dir.make<TH1F>("multheta", "Multiplicity vs. Theta", 20, 0., 3.142);
485  fHmulphi = dir.make<TH1F>("mulphi", "Multiplicity vs. Phi", 10, -3.142, 3.142);
486  fHmultheta_xz = dir.make<TH1F>("multheta_xz", "Multiplicity vs. Theta_xz", 40, -3.142, 3.142);
487  fHmultheta_yz = dir.make<TH1F>("multheta_yz", "Multiplicity vs. Theta_yz", 40, -3.142, 3.142);
488  fHmulmom = dir.make<TH1F>("mulmom", "Multiplicity vs. Momentum", 10, 0., 10.);
489  fHmullen =
490  dir.make<TH1F>("mullen", "Multiplicity vs. Particle Length", 10, 0., 1.1 * tpc.Length());
491 
492  fHestartx = dir.make<TH1F>("exstart",
493  "Efficiency vs. X Start Position",
494  10,
495  -2. * tpc.HalfWidth(),
496  4. * tpc.HalfWidth());
497  fHestarty = dir.make<TH1F>(
498  "eystart", "Efficiency vs. Y Start Position", 10, -tpc.HalfHeight(), tpc.HalfHeight());
499  fHestartz = dir.make<TH1F>("ezstart", "Efficiency vs. Z Start Position", 10, 0., tpc.Length());
500  fHeendx = dir.make<TH1F>(
501  "exend", "Efficiency vs. X End Position", 10, -2. * tpc.HalfWidth(), 4. * tpc.HalfWidth());
502  fHeendy = dir.make<TH1F>(
503  "eyend", "Efficiency vs. Y End Position", 10, -tpc.HalfHeight(), tpc.HalfHeight());
504  fHeendz = dir.make<TH1F>("ezend", "Efficiency vs. Z End Position", 10, 0., tpc.Length());
505  fHetheta = dir.make<TH1F>("etheta", "Efficiency vs. Theta", 20, 0., 3.142);
506  fHephi = dir.make<TH1F>("ephi", "Efficiency vs. Phi", 10, -3.142, 3.142);
507  fHetheta_xz = dir.make<TH1F>("etheta_xz", "Efficiency vs. Theta_xz", 40, -3.142, 3.142);
508  fHetheta_yz = dir.make<TH1F>("etheta_yz", "Efficiency vs. Theta_yz", 40, -3.142, 3.142);
509  fHemom = dir.make<TH1F>("emom", "Efficiency vs. Momentum", 10, 0., 10.);
510  fHelen = dir.make<TH1F>("elen", "Efficiency vs. Particle Length", 10, 0., 1.1 * tpc.Length());
511  }
TDirectory * dir
Definition: macro.C:5

Member Data Documentation

TH1F* trkf::SeedAna::MCHists::fHcosth {nullptr}

Definition at line 253 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze().

TH2F* trkf::SeedAna::MCHists::fHduvcosth {nullptr}

Definition at line 252 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze().

TH1F* trkf::SeedAna::MCHists::fHeendx {nullptr}

Definition at line 325 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHeendy {nullptr}

Definition at line 326 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHeendz {nullptr}

Definition at line 327 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHelen {nullptr}

Definition at line 333 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHemom {nullptr}

Definition at line 332 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHephi {nullptr}

Definition at line 329 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHestartx {nullptr}

Definition at line 322 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHestarty {nullptr}

Definition at line 323 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHestartz {nullptr}

Definition at line 324 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHetheta {nullptr}

Definition at line 328 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHetheta_xz {nullptr}

Definition at line 330 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHetheta_yz {nullptr}

Definition at line 331 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHgendx {nullptr}

Definition at line 295 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHgendy {nullptr}

Definition at line 296 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHgendz {nullptr}

Definition at line 297 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHglen {nullptr}

Definition at line 303 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHgmom {nullptr}

Definition at line 302 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHgphi {nullptr}

Definition at line 299 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHgstartx {nullptr}

Definition at line 292 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHgstarty {nullptr}

Definition at line 293 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHgstartz {nullptr}

Definition at line 294 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHgtheta {nullptr}

Definition at line 298 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHgtheta_xz {nullptr}

Definition at line 300 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHgtheta_yz {nullptr}

Definition at line 301 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmcdudw {nullptr}

Definition at line 257 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze().

TH1F* trkf::SeedAna::MCHists::fHmcdvdw {nullptr}

Definition at line 258 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze().

TH1F* trkf::SeedAna::MCHists::fHmcendx {nullptr}

Definition at line 265 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmcendy {nullptr}

Definition at line 266 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmcendz {nullptr}

Definition at line 267 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmclen {nullptr}

Definition at line 273 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmcmom {nullptr}

Definition at line 272 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmcphi {nullptr}

Definition at line 269 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmcstartx {nullptr}

Definition at line 262 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmcstarty {nullptr}

Definition at line 263 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmcstartz {nullptr}

Definition at line 264 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmctheta {nullptr}

Definition at line 268 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmctheta_xz {nullptr}

Definition at line 270 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmctheta_yz {nullptr}

Definition at line 271 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmcu {nullptr}

Definition at line 254 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze().

TH1F* trkf::SeedAna::MCHists::fHmcv {nullptr}

Definition at line 255 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze().

TH1F* trkf::SeedAna::MCHists::fHmcw {nullptr}

Definition at line 256 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze().

TH1F* trkf::SeedAna::MCHists::fHmendx {nullptr}

Definition at line 280 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmendy {nullptr}

Definition at line 281 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmendz {nullptr}

Definition at line 282 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmlen {nullptr}

Definition at line 288 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmmom {nullptr}

Definition at line 287 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmphi {nullptr}

Definition at line 284 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmstartx {nullptr}

Definition at line 277 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmstarty {nullptr}

Definition at line 278 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmstartz {nullptr}

Definition at line 279 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmtheta {nullptr}

Definition at line 283 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmtheta_xz {nullptr}

Definition at line 285 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmtheta_yz {nullptr}

Definition at line 286 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::analyze(), and trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmulendx {nullptr}

Definition at line 310 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmulendy {nullptr}

Definition at line 311 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmulendz {nullptr}

Definition at line 312 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmullen {nullptr}

Definition at line 318 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmulmom {nullptr}

Definition at line 317 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmulphi {nullptr}

Definition at line 314 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmulstartx {nullptr}

Definition at line 307 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmulstarty {nullptr}

Definition at line 308 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmulstartz {nullptr}

Definition at line 309 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmultheta {nullptr}

Definition at line 313 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmultheta_xz {nullptr}

Definition at line 315 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().

TH1F* trkf::SeedAna::MCHists::fHmultheta_yz {nullptr}

Definition at line 316 of file SeedAna_module.cc.

Referenced by trkf::SeedAna::endJob().


The documentation for this struct was generated from the following file: