58 std::vector<unsigned int> g4_track_id;
59 for (
auto const& mct : *mctHandle) {
61 if (!mct.size())
continue;
63 double dE = (*mct.begin()).Momentum().E() - (*mct.rbegin()).Momentum().E();
64 if (dE > 100) g4_track_id.push_back(mct.TrackID());
67 if (g4_track_id.size()) {
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;
82 for (
size_t i = 0; i < trkHandle->size(); ++i) {
84 const std::vector<art::Ptr<recob::Hit>> hit_coll = hit_coll_v.at(i);
86 std::vector<btutil::WireRange_t>
hits;
88 for (
auto const& h_ptr : hit_coll) {
90 if (wireReadoutGeom.ChannelToWire(h_ptr->Channel())[0].
Plane != ::
geo::kW)
continue;
92 hits.emplace_back(h_ptr->Channel(), h_ptr->StartTick(), h_ptr->EndTick());
95 auto mcq_v = alg_mct.
MCQ(clockData, hits);
96 auto mcq_frac_v = alg_mct.
MCQFrac(clockData, hits);
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;
const std::vector< double > & MCQSum(const size_t plane_id) const
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")
MCBTDemo & operator=(MCBTDemo const &)=delete
EDAnalyzer(fhicl::ParameterSet const &pset)
bool isValid() const noexcept
void analyze(art::Event const &e) override
#define DEFINE_ART_MODULE(klass)
std::vector< double > MCQ(detinfo::DetectorClocksData const &clockData, const WireRange_t &hit) const
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
object containing MC truth information necessary for making RawDigits and doing back tracking ...
Planes which measure W (third view for Bo, MicroBooNE, etc).
recob::tracking::Plane Plane