45 int CurrErrorLevel = gErrorIgnoreLevel;
46 gErrorIgnoreLevel = kFatal;
48 caf::StandardRecord* sr =
new caf::StandardRecord();
51 std::string FileName = mc_files[iSample];
52 MACH3LOG_INFO(
"Reading File: {}",FileName);
53 TFile* File = TFile::Open(FileName.c_str());
54 if (!File || File->IsZombie()) {
55 MACH3LOG_ERROR(
"Did not find File: {}",FileName);
56 throw MaCh3Exception(__FILE__, __LINE__);
58 TTree* Tree = File->Get<TTree>(
"cafTree");
60 MACH3LOG_ERROR(
"Did not find Tree::cafTree in File: {}",FileName);
61 throw MaCh3Exception(__FILE__, __LINE__);
64 Tree->SetBranchStatus(
"*", 1);
65 Tree->SetBranchAddress(
"rec", &sr);
67 duneobj->
nEvents = Tree->GetEntries();
84 for (
int iEvent=0;iEvent<duneobj->
nEvents;iEvent++) {
85 Tree->GetEntry(iEvent);
87 if ((iEvent % (duneobj->
nEvents/10))==0) {
88 MACH3LOG_INFO(
"\tProcessing event: {}/{}",iEvent,duneobj->
nEvents);
91 duneobj->
nupdg[iEvent] = sample_nupdg[iSample];
92 duneobj->
nupdgUnosc[iEvent] = sample_nupdgunosc[iSample];
95 duneobj->
rw_isCC[iEvent] = sr->mc.nu[0].iscc;
96 duneobj->
Target[iEvent] = 40;
98 duneobj->
rw_etru[iEvent] = (double)(sr->mc.nu[0].E);
100 TVector3 TrueNuMomentumVector = (TVector3(sr->mc.nu[0].momentum.X(),sr->mc.nu[0].momentum.Y(),sr->mc.nu[0].momentum.Z())).Unit();
101 duneobj->
rw_truecz[iEvent] = TrueNuMomentumVector.Y();
103 duneobj->
flux_w[iEvent] = sr->mc.nu[0].genweight;
105 TVector3 RecoNuMomentumVector;
107 duneobj->
rw_erec[iEvent] = sr->common.ixn.pandora[0].Enu.e_calo;
108 RecoNuMomentumVector = (TVector3(sr->common.ixn.pandora[0].dir.heshw.X(),sr->common.ixn.pandora[0].dir.heshw.Y(),sr->common.ixn.pandora[0].dir.heshw.Z())).Unit();
110 duneobj->
rw_erec[iEvent] = sr->common.ixn.pandora[0].Enu.lep_calo;
111 RecoNuMomentumVector = (TVector3(sr->common.ixn.pandora[0].dir.lngtrk.X(),sr->common.ixn.pandora[0].dir.lngtrk.Y(),sr->common.ixn.pandora[0].dir.lngtrk.Z())).Unit();
113 duneobj->
rw_theta[iEvent] = RecoNuMomentumVector.Y();
120 gErrorIgnoreLevel = CurrErrorLevel;
127 FarDetectorCoreInfo *fdobj = &(MCSamples[iSample]);
132 for(
int iEvent = 0 ;iEvent < fdobj->nEvents ; ++iEvent) {
133 fdobj->rw_etru[iEvent] = &(duneobj->
rw_etru[iEvent]);
134 fdobj->mode[iEvent] = &(duneobj->
mode[iEvent]);
135 fdobj->Target[iEvent] = &(duneobj->
Target[iEvent]);
136 fdobj->isNC[iEvent] = !duneobj->
rw_isCC[iEvent];
137 fdobj->nupdg[iEvent] = &(duneobj->
nupdg[iEvent]);
138 fdobj->nupdgUnosc[iEvent] = &(duneobj->
nupdgUnosc[iEvent]);
140 fdobj->rw_truecz[iEvent] = &(duneobj->
rw_truecz[iEvent]);
224 else if (KinematicParameterStr ==
"TrueCosineZ") {ReturnVal =
kTrueCosZ;}
225 else if (KinematicParameterStr ==
"RecoCosineZ") {ReturnVal =
kRecoCosZ;}
226 else if (KinematicParameterStr ==
"OscChannel") {ReturnVal =
kOscChannel;}
227 else if (KinematicParameterStr ==
"Mode") {ReturnVal =
kMode;}
229 MACH3LOG_ERROR(
"KinematicParameterStr: {} not found",KinematicParameterStr);
230 throw MaCh3Exception(__FILE__, __LINE__);