LArSoft  v10_04_05
Liquid Argon Software toolkit - https://larsoft.org/
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
MCBTDemo_module.cc
Go to the documentation of this file.
1 // Class: MCBTDemo
3 // Module Type: analyzer
4 // File: MCBTDemo_module.cc
5 //
6 // Generated at Thu Jan 8 08:16:24 2015 by Kazuhiro Terao using artmod
7 // from cetpkgsupport v1_08_02.
9 
16 
23 #include "larreco/MCComp/MCBTAlg.h"
24 #include <iostream>
25 
26 class MCBTDemo : public art::EDAnalyzer {
27 public:
28  explicit MCBTDemo(fhicl::ParameterSet const& p);
29 
30  // Plugins should not be copied or assigned.
31  MCBTDemo(MCBTDemo const&) = delete;
32  MCBTDemo(MCBTDemo&&) = delete;
33  MCBTDemo& operator=(MCBTDemo const&) = delete;
34  MCBTDemo& operator=(MCBTDemo&&) = delete;
35 
36 private:
37  // Required functions.
38  void analyze(art::Event const& e) override;
39 };
40 
42 
44 {
45  // Implementation of required member function here.
47  e.getByLabel("mcreco", mctHandle);
48 
50  e.getByLabel("largeant", schHandle);
51 
53  e.getByLabel("trackkalmanhit", trkHandle);
54 
55  if (!mctHandle.isValid() || !schHandle.isValid() || !trkHandle.isValid()) return;
56 
57  // Collect G4 track ID from MCTrack whose energy loss > 100 MeV inside the detector
58  std::vector<unsigned int> g4_track_id;
59  for (auto const& mct : *mctHandle) {
60 
61  if (!mct.size()) continue;
62 
63  double dE = (*mct.begin()).Momentum().E() - (*mct.rbegin()).Momentum().E();
64  if (dE > 100) g4_track_id.push_back(mct.TrackID());
65  }
66 
67  if (g4_track_id.size()) {
68 
69  auto const& wireReadoutGeom = art::ServiceHandle<geo::WireReadout const>()->Get();
70  btutil::MCBTAlg alg_mct(g4_track_id, *schHandle);
71 
72  auto sum_mcq_v = alg_mct.MCQSum(2);
73  std::cout << "Total charge contents on W plane:" << std::endl;
74  for (size_t i = 0; i < sum_mcq_v.size() - 1; ++i)
75  std::cout << " MCTrack " << i << " => " << sum_mcq_v[i] << std::endl;
76  std::cout << " Others => " << (*sum_mcq_v.rbegin()) << std::endl;
77 
78  // Loop over reconstructed tracks and find charge fraction
79  art::FindManyP<recob::Hit> hit_coll_v(trkHandle, e, "trackkalmanhit");
80  auto const clockData = art::ServiceHandle<detinfo::DetectorClocksService const>()->DataFor(e);
81 
82  for (size_t i = 0; i < trkHandle->size(); ++i) {
83 
84  const std::vector<art::Ptr<recob::Hit>> hit_coll = hit_coll_v.at(i);
85 
86  std::vector<btutil::WireRange_t> hits;
87 
88  for (auto const& h_ptr : hit_coll) {
89 
90  if (wireReadoutGeom.ChannelToWire(h_ptr->Channel())[0].Plane != ::geo::kW) continue;
91 
92  hits.emplace_back(h_ptr->Channel(), h_ptr->StartTick(), h_ptr->EndTick());
93  }
94 
95  auto mcq_v = alg_mct.MCQ(clockData, hits);
96  auto mcq_frac_v = alg_mct.MCQFrac(clockData, hits);
97 
98  std::cout << "Track " << i << " "
99  << "Y plane Charge from first MCTrack: " << mcq_v[0]
100  << " ... Purity: " << mcq_frac_v[0]
101  << " ... Efficiency: " << mcq_v[0] / sum_mcq_v[0] << std::endl;
102  }
103  }
104 }
105 
const std::vector< double > & MCQSum(const size_t plane_id) const
Definition: MCBTAlg.cxx:90
Declaration of signal hit object.
Class def header for a class MCBTAlg.
cout<< "Opened file "<< fin<< " ixs= "<< ixs<< endl;if(ixs==0) hhh=(TH1F *) fff-> Get("h1")
Definition: AddMC.C:8
MCBTDemo & operator=(MCBTDemo const &)=delete
EDAnalyzer(fhicl::ParameterSet const &pset)
Definition: EDAnalyzer.cc:6
bool isValid() const noexcept
Definition: Handle.h:203
void analyze(art::Event const &e) override
void hits()
Definition: readHits.C:15
#define DEFINE_ART_MODULE(klass)
Definition: ModuleMacros.h:65
std::vector< double > MCQ(detinfo::DetectorClocksData const &clockData, const WireRange_t &hit) const
Definition: MCBTAlg.cxx:97
MCBTDemo(fhicl::ParameterSet const &p)
Class def header for mctrack data container.
bool getByLabel(std::string const &label, std::string const &instance, Handle< PROD > &result) const
Provides recob::Track data product.
std::vector< double > MCQFrac(detinfo::DetectorClocksData const &clockData, const WireRange_t &hit) const
Definition: MCBTAlg.cxx:122
object containing MC truth information necessary for making RawDigits and doing back tracking ...
Planes which measure W (third view for Bo, MicroBooNE, etc).
Definition: geo_types.h:133
Float_t e
Definition: plot.C:35
recob::tracking::Plane Plane
Definition: TrackState.h:17