355 |
|
string result; |
356 |
|
string tmp(jetalg); |
357 |
|
|
358 |
< |
if (tmp.find("fastjet")==0) { |
358 |
> |
if (tmp.find("kt")==0) { |
359 |
|
result = "fast k_{T}, D="; |
360 |
< |
tmp=tmp.substr(7); |
360 |
> |
tmp=tmp.substr(2); |
361 |
|
} |
362 |
< |
else if (tmp.find("icone")==0) { |
363 |
< |
result = "icone, R="; |
364 |
< |
tmp = tmp.substr(5); |
362 |
> |
else if (tmp.find("sc")==0) { |
363 |
> |
result = "SISCone, R="; |
364 |
> |
tmp = tmp.substr(2); |
365 |
|
} |
366 |
< |
else if (tmp.find("mcone")==0) { |
367 |
< |
result = "mcone, R="; |
368 |
< |
tmp = tmp.substr(5); |
366 |
> |
else if (tmp.find("ic")==0) { |
367 |
> |
result = "Iterative Cone, R="; |
368 |
> |
tmp = tmp.substr(2); |
369 |
> |
} |
370 |
> |
else if (tmp.find("mc")==0) { |
371 |
> |
result = "Midpoint, R="; |
372 |
> |
tmp = tmp.substr(2); |
373 |
|
} |
374 |
|
else return result; |
375 |
< |
|
375 |
> |
|
376 |
|
stringstream ssparam; |
377 |
|
ssparam<<tmp; |
378 |
|
float param; |