Fills indexing for each sample and generates a large spline vector.
21{
22
23 int iSample = getSampleIndex(SampleName);
24
25 enum ModeState {
26 kInConfig = 0,
27 kInConfigAndInFile,
28 kInFile
29 };
30
31 std::vector<std::map<std::string,ModeState>> ModeStatus;
32
33
34 for (unsigned iSyst = 0; iSyst < SplineFileParPrefixNames[iSample].size(); iSyst++)
35 {
36 auto modes = SplineModeVecs[iSample][iSyst];
37 ModeStatus.emplace_back();
38
39 for (auto const & mode : modes)
40 {
41
43 }
44 }
45
46 int nOscChannels = nOscChans[iSample];
47
48 for (int iOscChan = 0; iOscChan < nOscChannels; iOscChan++)
49 {
50 std::cout << "Processing:" << OscChanFileNames[iOscChan] << std::endl;
51
52 TFile *File = new TFile(OscChanFileNames[iOscChan].c_str(), "READ");
53 if (!File || File->IsZombie())
54 {
55 std::cerr << "File " << OscChanFileNames[iOscChan] << " not found" << std::endl;
56 throw;
57 }
58
59
60
61 TIter Next(File->GetListOfKeys());
62 TKey *Key;
63
64 std::set<std::string> unique_spline_names;
65 int nb_splines = 0;
66
67 while ((Key = (TKey *)Next()))
68 {
69 TClass *Class = gROOT->GetClass(Key->GetClassName());
70
71
72 if (!Class->InheritsFrom("TSpline3")){continue;}
73 const char* keyName = Key->GetName();
74
75 char* SplineName = new char[strlen(keyName) + 1];
76 strcpy(SplineName, keyName);
77
78 nb_splines += 1;
79 if(unique_spline_names.count(std::string(SplineName)) > 0){
80 if (std::string(SplineName).find("unknown") == std::string::npos){
81
82 continue;
83 }
84 }
85 unique_spline_names.insert(std::string(SplineName));
86
87 char *Syst;
88 char *Mode;
89 int Var1Bin;
90 int Var2Bin;
91 int Var3Bin;
92
93 char *Token = strtok(SplineName, "_");
94 Token = strtok(NULL, "_");
95 Syst = Token;
96
97 int SystNum = -1;
98 for (unsigned iSyst = 0; iSyst < SplineFileParPrefixNames[iSample].size(); iSyst++) {
99 if (strcmp(Syst, SplineFileParPrefixNames[iSample][iSyst].c_str()) == 0) {
100 SystNum = iSyst;
101 break;
102 }
103 }
104
105
106 if (SystNum == -1){
107 continue;
108 }
109
110 int ModeNum = -1;
111 Mode = strtok(NULL, "_");
112 for (unsigned int iMode = 0; iMode < SplineModeVecs[iSample][SystNum].size(); iMode++) {
114 ModeNum = iMode;
115 break;
116 }
117 }
118
119
120 if(ModeStatus[SystNum].count(Mode))
121 {
122
123 if(ModeStatus[SystNum][Mode]!=kInFile)
124 {
125 ModeStatus[SystNum][Mode]=kInConfigAndInFile;
126 }
127 else
128 {
129 continue;
130 }
131 }
132 else
133 {
134 ModeStatus[SystNum][Mode]=kInFile;
135 continue;
136 }
137
138 TSpline3 *Obj = (TSpline3 *)Key->ReadObj();
139 TSpline3_red *Spline = new TSpline3_red(Obj);
140 delete Obj;
141
142 Token = strtok(NULL, "_");
143
144 Var1Bin = atoi(strtok(NULL, "_"));
145 Var2Bin = atoi(strtok(NULL, "_"));
146
147 char *Var3Bin_Char = strtok(NULL, "_");
148 if (Var3Bin_Char == NULL)
149 {
150 Var3Bin = 0;
151 }
152 else
153 {
154 Var3Bin = atoi(Var3Bin_Char);
155 }
156
157 if (isValidSplineIndex(SampleName, iOscChan, SystNum, ModeNum, Var1Bin, Var2Bin, Var3Bin))
158 {
159
160
161 int nKnots = Spline->GetNp();
162 bool isFlat = true;
163
164 for (int iKnot = 0; iKnot < nKnots; iKnot++)
165 {
166 double x = -999;
167 double y = -999;
168 Spline->GetKnot(iKnot, x, y);
169
170 if (x == -999 || y == -999)
171 {
172 std::cerr << "Something has gone wrong... knot position is at -999" << std::endl;
173 std::cerr << "This error brought you by the folks at : "<<__FILE__<<" : "<<__LINE__<<std::endl;
174 throw;
175 }
176
177 double Eval = Spline->Eval(x);
178 if (Eval < 0.99999 || Eval > 1.00001)
179 {
180 isFlat = false;
181 break;
182 }
183 }
184
185
186 indexvec[iSample][iOscChan][SystNum][ModeNum][Var1Bin][Var2Bin][Var3Bin]=MonolithIndex;
187
188 coeffindexvec.push_back(CoeffIndex);
189
190 if (isFlat)
191 {
192 splinevec_Monolith.push_back(NULL);
193 delete Spline;
194 }
195 else{
196 splinevec_Monolith.push_back(Spline);
197 int np=Spline->GetNp();
198 uniquecoeffindices.push_back(MonolithIndex);
199 CoeffIndex+=np;
200 }
201
202 MonolithIndex+=1;
203 }
204 }
205
206 std::cout << "Got " << nb_splines << " total splines with " << unique_spline_names.size() << " unique names." << std::endl;
207 delete File;
208 }
209
210
211 for (unsigned iSyst = 0; iSyst < SplineFileParPrefixNames[iSample].size(); iSyst++)
212 {
213 std::vector<std::string> MissedModes;
214 for (auto const & ModeUsage : ModeStatus[iSyst])
215 {
216 if(ModeUsage.second==kInFile)
217 {
218 MissedModes.push_back(ModeUsage.first);
219 }
220 }
221
222 if(MissedModes.size()!=0)
223 {
224 MACH3LOG_INFO("Parameter {} has splines for {} modes which have not been read in!", SplineFileParPrefixNames[iSample][iSyst].c_str(), MissedModes.size());
225 std::cout << "Modes: ";
226 for (auto const & Mode : MissedModes)
227 {
228 std::cout << Mode << " ";
229 }
230 std::cout << std::endl;
231 }
232 }
233
234 return;
235}
std::string MaCh3mode_ToDUNEString(MaCh3_Mode i)