Function to setup MC from file.
56 {
57
59 int nutype = sample_nutype[iSample];
60 int oscnutype = sample_oscnutype[iSample];
61 bool signal = sample_signal[iSample];
62
63 MACH3LOG_INFO("-------------------------------------------------------------------");
64 MACH3LOG_INFO("Input File: {}", mc_files.at(iSample));
65
66 _sampleFile = TFile::Open(mc_files.at(iSample).c_str(),
"READ");
68
70 MACH3LOG_INFO("Found \"caf\" tree in {}", mc_files[iSample]);
71 MACH3LOG_INFO(
"With number of entries: {}",
_data->GetEntries());
72 }
73 else{
74 MACH3LOG_ERROR("Could not find \"caf\" tree in {}", mc_files[iSample]);
75 throw MaCh3Exception(__FILE__, __LINE__);
76 }
77
78 _data->SetBranchStatus(
"*", 1);
79 _data->SetBranchAddress(
"rec", &
sr);
80
83
85 duneobj->nutype = nutype;
86 duneobj->oscnutype = oscnutype;
87 duneobj->signal = signal;
88
89
99
101
107
112
116
121
124
129
131
132 int num_no_ixns =0;
133 int num_no_recparticles = 0;
134 int num_in_fdv = 0;
135 int num_in_fdv_noreco = 0;
136 int num_notin_fdv =0;
137 int num_nanenergy =0;
138 int num_nanparticles =0;
139
140
141 for (
int i = 0; i < (duneobj->
nEvents); ++i) {
143 double radius = pow((pow((
sr->mc.nu[0].vtx.y+150),2) + pow((
sr->mc.nu[0].vtx.z-1486),2)),0.5);
144 if(std::abs(
sr->mc.nu[0].vtx.x)<=209.0 && radius<=227.02){
145 num_in_fdv++;
147 } else{
148 num_notin_fdv++;
150 }
151
152 if(
sr->common.ixn.ngsft == 0){
153
154 float erec_total =0;
156 duneobj->
rw_yrec[i] = (double)(0);
157 num_no_ixns++;
159 } else{
161 float erec_total =0;
162 float elep_reco =0;
164 int nixns = (int)(
sr->common.ixn.ngsft);
165 for(int i_ixn =0; i_ixn<nixns; i_ixn++) {
166 int nrecoparticles = (int)(
sr->common.ixn.gsft[i_ixn].part.ngsft);
168 int nanparticles = 0;
169 if(nrecoparticles ==0){
170 double radius = pow((pow((
sr->mc.nu[0].vtx.y+150.),2) + pow((
sr->mc.nu[0].vtx.z-1486.),2)),0.5);
171 if(std::abs(
sr->mc.nu[0].vtx.x)<=209.0 || radius<=227.02) {
172 num_in_fdv_noreco++;
173 }
174 num_no_recparticles++;}
175 for(int i_part =0; i_part<nrecoparticles; i_part++) {
176 float erec_part = (float)(
sr->common.ixn.gsft[i_ixn].part.gsft[i_part].E);
177 if(std::isnan(erec_part)){nanparticles++;}
178 erec_total+=erec_part;
179 if((
float)(
sr->common.ixn.gsft[i_ixn].part.gsft[i_part].score.gsft_pid.muon_score>muonscore)){
180 if(erec_part>elep_reco){
181 elep_reco = erec_part;
182 duneobj->
rw_reco_vtx_x[i] = (double)((
float)(
sr->common.ixn.gsft[i_ixn].part.gsft[i_part].start.x));
183 duneobj->
rw_reco_vtx_y[i] = (double)((
float)(
sr->common.ixn.gsft[i_ixn].part.gsft[i_part].start.y));
184 duneobj->
rw_reco_vtx_z[i] = (double)((
float)(
sr->common.ixn.gsft[i_ixn].part.gsft[i_part].start.z));
185 duneobj->
rw_lep_pT[i] = (double)(pow(pow((
float)(
sr->common.ixn.gsft[i_ixn].part.gsft[i_part].p.x), 2) + pow((
float)(
sr->common.ixn.gsft[i_ixn].part.gsft[i_part].p.y), 2), 0.5));
186 duneobj->
rw_lep_pZ[i] = (double)(
sr->common.ixn.gsft[i_ixn].part.gsft[i_part].p.z);
187 }
189 }
190 }
191 num_nanparticles = num_nanparticles + (nanparticles/nrecoparticles);
192 }
193 if(std::isnan(erec_total)){num_nanenergy++; erec_total = (float)(
sr->common.ixn.gsft[0].Enu.lep_calo);}
195 else{duneobj->
rw_erec[i]=(double)(erec_total);}
197 }
198
200 else{duneobj->
rw_yrec[i] = (double)(0);}
201 duneobj->
rw_etru[i] = (double)(
sr->mc.nu[0].E);
202 duneobj->
rw_isCC[i] = (int)(
sr->mc.nu[0].iscc);
206
207 int ntrueparticles = (int)(
sr->mc.nu[0].nprim);
208 for(int i_truepart =0; i_truepart<ntrueparticles; i_truepart++){
209 if(std::abs(
sr->mc.nu[0].prim[i_truepart].pdg) == 13){
212 }
213 }
214 int ntruesecparticles = (int)(
sr->mc.nu[0].nsec);
215 for(int i_truepart =0; i_truepart<ntruesecparticles; i_truepart++){
216 if(std::abs(
sr->mc.nu[0].sec[i_truepart].pdg) == 13){
218 }
219 }
220
221 duneobj->
nproton[i] =
sr->mc.nu[0].nproton;
223 duneobj->
npip[i] =
sr->mc.nu[0].npip;
224 duneobj->
npim[i] =
sr->mc.nu[0].npim;
225 duneobj->
npi0[i] =
sr->mc.nu[0].npi0;
226
228 duneobj->
rw_vtx_x[i] = (double)(
sr->mc.nu[0].vtx.x);
229 duneobj->
rw_vtx_y[i] = (double)(
sr->mc.nu[0].vtx.y);
230 duneobj->
rw_vtx_z[i] = (double)(
sr->mc.nu[0].vtx.z);
231
232 duneobj->
rw_rad[i] = (double)(pow((pow((duneobj->
rw_vtx_y[i]+150),2) + pow((duneobj->
rw_vtx_z[i]-1486),2)),0.5));
235
236
238
240 _isCC = (int)(
sr->mc.nu[0].iscc);
241
242 int mode= TMath::Abs(
_mode);
244
246 }
247
250}
int GENIEMode_ToMaCh3Mode(int GENIE_mode, int isCC)
TFile * _sampleFile
File containing sample objects.
TTree * _data
TTree containing sample Data.
double pot
Value of POT used for sample.
float muonscore_threshold
int * npip
number of (post-FSI) primary pi+
int * npim
number of (post-FSI) primary pi-
int * npi0
number of (post-FSI) primary pi0
int * nproton
number of (post-FSI) primary protons
int * nneutron
number of (post-FSI) primary neutrons