122{
123
124 char** tc = 0;
125
126
127
128
129
130 if(
v[0] == std::string(
"MAXPDF")) {
131
132 _pdfMax = strtod(
v[1].
c_str(),tc);
133 if(_pdfMax <= 0) { printf("Bad pdfMax=%f\n",_pdfMax); assert(0); }
134 }
135 else
136 if(
v[0] == std::string(
"SCANPDF")) {
137
138 _nScan = atoi(
v[1].
c_str());
139 }
140 else {
141
142 printf("Error parsing decay file\n");
143 assert(0);
144 }
145
146
147
148
149 bool conjugate = false;
150 int i = 2;
152
153 while(i <
v.size()) {
154
155 int i0 = i;
156
157
158 if(
v[i] == std::string(
"CONJUGATE")) {
159
160 assert(conjugate == false);
161 conjugate = true;
163 _dm = strtod(
v[i].
c_str(),tc);
164 i++;
165 }
166
167 std::vector<std::string> params;
168 EvtComplex c;
169 int format;
170
171 if(!conjugate &&
v[i] == std::string(
"AMPLITUDE")) {
172
174 _amp.push_back(params);
175
177 _ampCoef.push_back(c);
178 _coefFormat.push_back(format);
179 continue;
180 }
181 else
182 if(conjugate &&
v[i] == std::string(
"AMPLITUDE")) {
183
185 _ampConj.push_back(params);
187 _ampConjCoef.push_back(c);
188 _coefConjFormat.push_back(format);
189 continue;
190 }
191 else {
192
193 printf(
"Expect keyword, found parameter %s\n",
v[i].
c_str());
194 assert(0);
195 }
196
197
198 assert(i > i0);
199 }
200
201 printf("PARSING SUCCESSFUL\n");
202 printf("%d amplitude terms\n",_amp.size());
203 printf("%d conj amplitude terms\n",_ampConj.size());
204}
static void parseComplexCoef(int &i, const std::vector< std::string > &v, EvtComplex &c, int &format)
static bool isKeyword(const std::string &s)