34 {
"T", { 0.100, 0.180, 0.001 } },
35 {
"muB", { 0.000, 0.000, 0.01 } },
36 {
"muQ", { 0.000, 0.000, 0.01 } },
37 {
"muS", { 0.000, 0.000, 0.01 } }
45 std::ifstream fin(filename);
47 std::cerr <<
"Error: cannot open file " << filename <<
"using default parameter range" << std::endl;
52 while (std::getline(fin, line)) {
53 if (line.empty() || line[0] ==
'#') {
continue; }
54 std::istringstream iss(line);
56 if (!(iss >> param))
continue;
57 if (param[0] ==
'#') {
continue; }
58 double min, max, step;
59 if (!(iss >> min >> max >> step)) {
break; }
74int main(
int argc,
char *argv[])
89 useRG = atoi(argv[3]);
92 string param_range_file =
"";
94 param_range_file = argv[4];
98 bool compute_cT2 =
false;
100 compute_cT2 = atoi(argv[5]);
105 string ModelPrefix =
"Id-HRG";
106 if (a == 0. && b == 0.) {
108 ModelPrefix =
"Id-HRG";
112 ModelPrefix =
"EV-HRG";
116 ModelPrefix =
"QvdW-HRG";
121 ModelPrefix =
"RG-HRG";
124 std::string outputfile =
"Susceptibilities-" + ModelPrefix +
"-output.dat";
126 outputfile = argv[6];
136 assert(ModelType >= 0 && ModelType <= 3);
137 if (ModelType == 0) {
139 cout <<
"Performing calculation in the Id-HRG model..." << endl;
141 else if (ModelType == 1) {
144 cout <<
"Performing calculation in the EV-HRG model..." << endl;
146 else if (ModelType == 2) {
149 cout <<
"Performing calculation in the QvdW-HRG model..." << endl;
151 else if (ModelType == 3) {
168 cout <<
"Performing calculation in the RG-HRG model..." << endl;
172 bool useWidth =
false;
178 bool useQStats =
true;
184 ofstream fout(outputfile);
185 const int tabsize = 20;
186 fout << std::setw(tabsize) <<
"T[GeV]" <<
" ";
187 fout << std::setw(tabsize) <<
"muB[GeV]" <<
" ";
188 fout << std::setw(tabsize) <<
"muQ[GeV]" <<
" ";
189 fout << std::setw(tabsize) <<
"muS[GeV]" <<
" ";
191 fout << std::setw(tabsize) <<
"cs2" <<
" ";
193 fout << std::setw(tabsize) <<
"cT2" <<
" ";
195 fout << std::setw(tabsize) <<
"cV/T^3" <<
" ";
197 fout << std::setw(tabsize) <<
"chi2B" <<
" ";
198 fout << std::setw(tabsize) <<
"chi2Q" <<
" ";
199 fout << std::setw(tabsize) <<
"chi2S" <<
" ";
200 fout << std::setw(tabsize) <<
"chi11BQ" <<
" ";
201 fout << std::setw(tabsize) <<
"chi11BS" <<
" ";
202 fout << std::setw(tabsize) <<
"chi11QS" <<
" ";
204 fout << std::setw(tabsize) <<
"T*chi2B'" <<
" ";
205 fout << std::setw(tabsize) <<
"T*chi2Q'" <<
" ";
206 fout << std::setw(tabsize) <<
"T*chi2S'" <<
" ";
207 fout << std::setw(tabsize) <<
"T*chi11BQ'" <<
" ";
208 fout << std::setw(tabsize) <<
"T*chi11BS'" <<
" ";
209 fout << std::setw(tabsize) <<
"T*chi11QS'" <<
" ";
210 fout << std::setw(tabsize) << std::endl;
220 for(
double T = Tmin; T <= Tmax + 0.1 * dT; T += dT) {
224 cout <<
"Calculating the temperature " << T <<
" GeV" << endl;
229 for(
double muB = muBmin; muB <= muBmax + 0.1 * dmuB; muB += dmuB) {
235 for(
double muQ = muQmin; muQ <= muQmax + 0.1 * dmuQ; muQ += dmuQ) {
241 for(
double muS = muSmin; muS <= muSmax + 0.1 * dmuS; muS += dmuS) {
269 double cs2 = model->cs2();
272 double cV = model->HeatCapacity();
276 fout << setw(tabsize) << T <<
" ";
277 fout << setw(tabsize) << muB <<
" ";
278 fout << setw(tabsize) << muQ <<
" ";
279 fout << setw(tabsize) << muS <<
" ";
280 fout << setw(tabsize) << cs2 <<
" ";
282 double cT2 = model->cT2();
283 fout << setw(tabsize) << cT2 <<
" ";
285 fout << setw(tabsize) << cVT3 <<
" ";
286 fout << setw(tabsize) << chi2B <<
" ";
287 fout << setw(tabsize) << chi2Q <<
" ";
288 fout << setw(tabsize) << chi2S <<
" ";
289 fout << setw(tabsize) << chi11BQ <<
" ";
290 fout << setw(tabsize) << chi11BS <<
" ";
291 fout << setw(tabsize) << chi11QS <<
" ";
292 fout << setw(tabsize) << Tchi2Bpr <<
" ";
293 fout << setw(tabsize) << Tchi2Qpr <<
" ";
294 fout << setw(tabsize) << Tchi2Spr <<
" ";
295 fout << setw(tabsize) << Tchi11BQpr <<
" ";
296 fout << setw(tabsize) << Tchi11BSpr <<
" ";
297 fout << setw(tabsize) << Tchi11QSpr <<
" ";
298 fout << setw(tabsize) << endl;
308 cout << setw(30) <<
"Running time: " << (wt2 - wt1) <<
" s" << endl;
309 cout << setw(30) <<
"Time per single calculation: " << (wt2 - wt1) / iters <<
" s" << endl;
@ eBWconstBR
Energy-dependent Breit-Wigner scheme (eBW) with constant branching ratios when evaluating feeddown.
Class containing the particle list.