1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
|
//STARTHEADER
// $Id$
//
// Copyright (c) 2005-2018, Matteo Cacciari, Gavin P. Salam and Gregory Soyez
//
//----------------------------------------------------------------------
// This file is part of FastJet.
//
// FastJet is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// The algorithms that underlie FastJet have required considerable
// development and are described in hep-ph/0512210. If you use
// FastJet as part of work towards a scientific publication, please
// include a citation to the FastJet paper.
//
// FastJet is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with FastJet. If not, see <http://www.gnu.org/licenses/>.
//----------------------------------------------------------------------
//ENDHEADER
//----------------------------------------------------------------------
/// fastjet_timing.cc: Program to help time and test the fastjet package
///
/// It reads files containing multiple events in the format
/// p1x p1y p1z E1
/// p2x p2y p2z E2
/// ...
/// #END
///
/// An example input file containing 10 events is included as
/// data/Pythia-PtMin1000-LHC-10ev.dat
///
/// Usage:
/// fastjet_timing [-strategy NUMBER] [-repeat nrepeats] [-massive] \
/// [-combine nevents] [-r Rparameter] [-incl ptmin] [...] \
/// < data_file
///
/// where the clustering can be repeated to aid timing and multiple
/// events can be combined to get to larger multiplicities. Some options:
///
/// Options for reading
/// -------------------
///
/// -nev n number of events to run
///
/// -combine n for combining multiple events from the data file in order
/// to get a single high-multipicity event to run.
///
/// -massless read in only the 3-momenta and deduce energies assuming
/// that particles are massless
///
/// -dense adds dense ghost coverage
///
/// -repeat n repeats each event n times
///
/// -nhardest n keep only the n hardest particles in the event
///
/// -file name read from the corresponding file rather than stdin.
/// (The file will be reopened for each new jet alg.; in
/// constrast, if you use stdin, each new alg will take a
/// new event).
///
/// Output Options
/// --------------
///
/// -incl ptmin output of all inclusive jets with pt > ptmin is obtained
/// with the -incl option.
///
/// -repeat-incl ptmin
/// same as -incl ptmin but do it for each repetition
/// of the clustering
///
/// -excld dcut output of all exclusive jets as obtained in a clustering
/// with dcut
///
/// -excly ycut output of all exclusive jets as obtained in a clustering
/// with ycut
///
/// -excln n output of clustering to n exclusive jets
///
/// -ee-print print things as px,py,pz,E
///
/// -get-all-dij print out all dij values
/// -get-all-yij print out all yij values
///
/// -const show jet constituents (works with excl jets)
///
/// -write for writing out detailed clustering sequence (valuable
/// for testing purposes)
///
/// -unique_write writes out the sequence of dij's according to the
/// "unique_history_order" (useful for verifying consistency
/// between different clustering strategies).
///
/// -root file sends output to file that can be read in with the script in
/// root/ so as to show a lego-plot of the event
///
/// -cones show extra info about internal steps for SISCone
///
/// -area calculate areas. Additional options include
/// -area:active
/// -area:passive
/// -area:explicit
/// -area:voronoi Rfact
/// -area:repeat nrepeat
/// -ghost-area area
/// -ghost-maxrap maxrap
/// -area:fj2 place ghosts as in fj2
///
/// -bkgd calculate the background density. Additional options include
/// -bkgd:csab use the old ClusterSequenceAreaBase methods
/// -bkgd:jetmedian use the new JetMedianBackgroundEstimator class
/// -bkgd:fj2 force jetmedian to calculate sigma as in fj2
/// -bkgd:gridmedian use GridMedianBackgroundEstimator with grid up to ghost_maxrap-ktR and grid spacing of 2ktR
///
/// -compare-strategy STRAT
/// compares the output of the default strategy (possibly as specified
/// with -strategy) with that from STRAT. Currently compares the history.
/// Algorithms
/// ----------
/// -all-algs runs all algorithms
///
/// -kt switch to the longitudinally invariant kt algorithm
/// Note: this is the default one.
///
/// -cam switch to the inclusive Cambridge/Aachen algorithm --
/// note that the option -excld dcut provides a clustering
/// up to the dcut which is the minimum squared
/// distance between any pair of jets.
///
/// -antikt switch to the anti-kt clustering algorithm
///
/// -genkt switch to the genkt algorithm
/// you can provide the parameter of the alg as an argument to
/// -genkt (1 by default)
///
/// -eekt switch to the e+e- kt algorithm
///
/// -eegenkt switch to the genkt algorithm
/// you can provide the parameter of the alg as an argument to
/// -ee_genkt (1 by default)
///
/// plugins (don't delete this line)
///
/// -pxcone switch to the PxCone jet algorithm
///
/// -siscone switch to the SISCone jet algorithm (seedless cones)
/// -sisconespheri switch to the Spherical SISCone jet algorithm (seedless cones)
///
/// -midpoint switch to CDF's midpoint code
/// -jetclu switch to CDF's jetclu code
///
/// -d0runipre96cone switch to the D0RunIpre96Cone plugin
/// -d0runicone switch to the D0RunICone plugin
///
/// -d0runiicone switch to D0's run II midpoint cone
///
/// -trackjet switch to the TrackJet plugin
///
/// -atlascone switch to the ATLASCone plugin
///
/// -eecambridge switch to the EECambridge plugin
///
/// -jade switch to the Jade plugin
///
/// -cmsiterativecone switch to the CMSIterativeCone plugin
///
/// -gridjet switch to the GridJet plugin
///
/// end of plugins (don't delete this line)
///
///
/// Options for running algs
/// ------------------------
///
/// -r sets the radius of the jet algorithm (default = 1.0)
///
/// -overlap | -f sets the overlap fraction in cone algs with split-merge
///
/// -seed sets the seed threshold
///
/// -strategy N indicate stratgey from the enum fastjet::Strategy (see
/// fastjet/JetDefinition.hh).
///
#ifndef __FJCORE__
#include "fastjet/ClusterSequenceArea.hh"
#include "fastjet/tools/JetMedianBackgroundEstimator.hh"
#include "fastjet/tools/GridMedianBackgroundEstimator.hh"
#include "fastjet/tools/Subtractor.hh"
#include "fastjet/Selector.hh"
#else
#include "fjcore.hh"
#endif
#include<iostream>
#include<iomanip>
#include<sstream>
#include<fstream>
#include<valarray>
#include<vector>
#include <cstdlib>
//#include<cstddef> // for size_t
#include "CmdLine.hh"
#ifndef __FJCORE__
// get info on how fastjet was configured
#include "fastjet/config.h"
#endif
// include the installed plugins (don't delete this line)
#ifdef FASTJET_ENABLE_PLUGIN_SISCONE
#include "fastjet/SISConePlugin.hh"
#include "fastjet/SISConeSphericalPlugin.hh"
#endif
#ifdef FASTJET_ENABLE_PLUGIN_CDFCONES
#include "fastjet/CDFMidPointPlugin.hh"
#include "fastjet/CDFJetCluPlugin.hh"
#endif
#ifdef FASTJET_ENABLE_PLUGIN_PXCONE
#include "fastjet/PxConePlugin.hh"
#endif
#ifdef FASTJET_ENABLE_PLUGIN_D0RUNIICONE
#include "fastjet/D0RunIIConePlugin.hh"
#endif
#ifdef FASTJET_ENABLE_PLUGIN_TRACKJET
#include "fastjet/TrackJetPlugin.hh"
#endif
#ifdef FASTJET_ENABLE_PLUGIN_ATLASCONE
#include "fastjet/ATLASConePlugin.hh"
#endif
#ifdef FASTJET_ENABLE_PLUGIN_EECAMBRIDGE
#include "fastjet/EECambridgePlugin.hh"
#endif
#ifdef FASTJET_ENABLE_PLUGIN_JADE
#include "fastjet/JadePlugin.hh"
#endif
#ifdef FASTJET_ENABLE_PLUGIN_CMSITERATIVECONE
#include "fastjet/CMSIterativeConePlugin.hh"
#endif
#ifdef FASTJET_ENABLE_PLUGIN_D0RUNICONE
#include "fastjet/D0RunIpre96ConePlugin.hh"
#include "fastjet/D0RunIConePlugin.hh"
#endif
#ifdef FASTJET_ENABLE_PLUGIN_GRIDJET
#include "fastjet/GridJetPlugin.hh"
#endif
// end of installed plugins inclusion (don't delete this line)
using namespace std;
// to avoid excessive typing, use the fastjet namespace
#ifndef __FJCORE__
using namespace fastjet;
#else
using namespace fjcore;
#endif
inline double pow2(const double x) {return x*x;}
// pretty print the jets and their subjets
void print_jets_and_sub (const vector<PseudoJet> & jets, double dcut);
#ifndef __FJCORE__
void print_jets_bkgd(const vector<PseudoJet> &jets,
const vector<PseudoJet> &subtracted_jets,
BackgroundEstimatorBase * bge_ptr,
bool do_subtractor);
#endif // __FJCORE__
// have various kinds of subjet finding, to test consistency among them
//
// this is needed in print_jets_and_sub and declaring it in the
// function scope results in errors with older intel compilers (due to
// the overloaded == operator in PseudoJet which results in the "a
// template argument may not reference a local type" error)
enum SubType {subtype_internal, subtype_newclust_dcut, subtype_newclust_R};
void do_compare_strategy(int iev,
const vector<PseudoJet> & particles,
const JetDefinition & jet_def,
const ClusterSequence & cs,
int compare_strategy);
string rootfile;
CmdLine * cmdline_p;
bool do_areas;
/// sort and pretty print jets, with exact behaviour depending on
/// whether ee_print is true or not
bool ee_print = false;
void print_jets(const vector<PseudoJet> & jets, bool show_const = false);
bool found_unavailable = false;
void is_unavailable(const string & algname) {
cerr << algname << " requested, but not available for this compilation" << endl;
found_unavailable = true;
//exit(0);
}
/// a program to test and time a range of algorithms as implemented or
/// wrapped in fastjet
int main (int argc, char ** argv) {
CmdLine cmdline(argc,argv);
cout << "# " << cmdline.command_line() << endl;
ClusterSequence::print_banner();
cmdline_p = &cmdline;
// allow the use to specify the Strategy either through the
// -clever or the -strategy options (both will take numerical
// values); the latter will override the former.
Strategy strategy = Strategy(cmdline.int_val("-strategy",
cmdline.int_val("-clever", Best)));
int repeat = cmdline.int_val("-repeat",1);
int combine = cmdline.int_val("-combine",1);
bool write = cmdline.present("-write");
bool unique_write = cmdline.present("-unique_write");
bool hydjet = cmdline.present("-hydjet");
double ktR = cmdline.double_val("-r",1.0);
ktR = cmdline.double_val("-R",ktR); // allow -r and -R
double inclkt = cmdline.double_val("-incl",-1.0);
double repeatinclkt = cmdline.double_val("-repeat-incl",-1.0);
int excln = cmdline.int_val ("-excln",-1);
double excld = cmdline.double_val("-excld",-1.0);
double excly = cmdline.double_val("-excly",-1.0);
ee_print = cmdline.present("-ee-print");
bool get_all_dij = cmdline.present("-get-all-dij");
bool get_all_yij = cmdline.present("-get-all-yij");
double subdcut = cmdline.double_val("-subdcut",-1.0);
double rapmax = cmdline.double_val("-rapmax",1.0e305);
if (cmdline.present("-etamax")) {
cerr << "WARNING: -etamax options actually sets maximum rapidity (and overrides -rapmax)\n";
rapmax = cmdline.double_val("-etamax");
}
bool show_constituents = cmdline.present("-const");
bool massless = cmdline.present("-massless");
int nev = cmdline.int_val("-nev",1);
int skip = cmdline.int_val("-skip",0);
bool add_dense_coverage = cmdline.present("-dense");
double ghost_maxrap = cmdline.value("-ghost-maxrap",5.0);
bool all_algs = cmdline.present("-all-algs");
// have the option of comparing the clustering results to those
// obtained with a different clustering strategy; the misuse the
// "plugin_strategy" to indicate that no comparison is needed.
// Does not currently support areas
int compare_strategy = cmdline.value<int>("-compare-strategy", plugin_strategy);
Selector particles_sel = (cmdline.present("-nhardest"))
? SelectorNHardest(cmdline.value<unsigned int>("-nhardest"))
: SelectorIdentity();
do_areas = cmdline.present("-area");
#ifndef __FJCORE__
AreaDefinition area_def;
if (do_areas) {
assert(!write); // it's incompatible
GhostedAreaSpec ghost_spec(ghost_maxrap,
cmdline.value("-area:repeat", 1),
cmdline.value("-ghost-area", 0.01));
if (cmdline.present("-area:fj2")) ghost_spec.set_fj2_placement(true);
if (cmdline.present("-area:explicit")) {
area_def = AreaDefinition(active_area_explicit_ghosts, ghost_spec);
} else if (cmdline.present("-area:passive")) {
area_def = AreaDefinition(passive_area, ghost_spec);
} else if (cmdline.present("-area:voronoi")) {
double Rfact = cmdline.value<double>("-area:voronoi");
area_def = AreaDefinition(voronoi_area,
VoronoiAreaSpec(Rfact));
} else {
cmdline.present("-area:active"); // allow, but do not require, arg
area_def = AreaDefinition(active_area, ghost_spec);
}
}
#else
do_areas=false;
#endif
bool do_bkgd = cmdline.present("-bkgd"); // background estimation
#ifndef __FJCORE__
bool do_bkgd_csab = false, do_bkgd_jetmedian = false, do_bkgd_fj2 = false;
bool do_bkgd_gridmedian = false;
bool do_bkgd_localrange = false;
bool do_subtractor = false;
double bkgd_alt_ktR = -1.0;
BackgroundRescalingYPolynomial * bkgd_rescaling = 0;
Selector bkgd_range;
if (do_bkgd) {
bkgd_range = SelectorAbsRapMax(ghost_maxrap - ktR);
if (cmdline.present("-bkgd:csab")) {do_bkgd_csab = true;}
else if (cmdline.present("-bkgd:jetmedian")) {do_bkgd_jetmedian = true;
do_bkgd_fj2 = cmdline.present("-bkgd:fj2");
do_bkgd_localrange = cmdline.present("-bkgd:localrange");
bkgd_alt_ktR = cmdline.value("-bkgd:alt-ktR", bkgd_alt_ktR);
if (do_bkgd_localrange) bkgd_range = SelectorStrip(1.5);
} else if (cmdline.present("-bkgd:gridmedian")) {
do_bkgd_gridmedian = true;
} else {
throw Error("with the -bkgd option, some particular background must be specified (csab or jetmedian)");
}
if (cmdline.present("-bkgd:rescaling")) {
bkgd_rescaling = new BackgroundRescalingYPolynomial(1.157,0,-0.0266,0,0.000048);
}
assert(do_areas || do_bkgd_gridmedian);
do_subtractor = cmdline.present("-subtractor");
if (do_subtractor) assert(do_areas);
}
#else
do_bkgd = false;
#endif
bool show_cones = cmdline.present("-cones"); // only works for siscone
// for cone algorithms
// allow -f and -overlap
double overlap_threshold = cmdline.double_val("-overlap",0.5);
overlap_threshold = cmdline.double_val("-f",overlap_threshold);
double seed_threshold = cmdline.double_val("-seed",1.0);
#ifdef __FJCORE__
show_cones = false;
#endif
// for ee algorithms, allow to specify ycut
double ycut = cmdline.double_val("-ycut",0.08);
// for printing jets to a file for reading by root
rootfile = cmdline.value<string>("-root","");
// out default scheme is the E_scheme
RecombinationScheme scheme = E_scheme;
// The following option causes the Cambridge algo to be used.
// Note that currently the only output that works sensibly here is
// "-incl 0"
vector<JetDefinition> jet_defs;
if (all_algs || cmdline.present("-cam") || cmdline.present("-CA")) {
jet_defs.push_back( JetDefinition(cambridge_algorithm, ktR, scheme, strategy));
}
if (all_algs || cmdline.present("-antikt")) {
jet_defs.push_back( JetDefinition(antikt_algorithm, ktR, scheme, strategy));
}
if (all_algs || cmdline.present("-genkt")) {
double p;
if (cmdline.present("-genkt")) p = cmdline.value<double>("-genkt");
else p = -0.5;
jet_defs.push_back( JetDefinition(genkt_algorithm, ktR, p, scheme, strategy));
}
if (all_algs || cmdline.present("-eekt")) {
jet_defs.push_back( JetDefinition(ee_kt_algorithm));
}
if (all_algs || cmdline.present("-eegenkt")) {
double p;
if (cmdline.present("-eegenkt")) p = cmdline.value<double>("-eegenkt");
else p = -0.5;
jet_defs.push_back( JetDefinition(ee_genkt_algorithm, ktR, p, scheme, strategy));
// checking if one asks to run a plugin (don't delete this line)
}
if (all_algs || cmdline.present("-midpoint")) {
#ifdef FASTJET_ENABLE_PLUGIN_CDFCONES
typedef CDFMidPointPlugin MPPlug; // for brevity
double cone_area_fraction = 1.0;
int max_pair_size = 2;
int max_iterations = 100;
MPPlug::SplitMergeScale sm_scale = MPPlug::SM_pt;
if (cmdline.present("-sm-pttilde")) sm_scale = MPPlug::SM_pttilde;
if (cmdline.present("-sm-pt")) sm_scale = MPPlug::SM_pt; // default
if (cmdline.present("-sm-mt")) sm_scale = MPPlug::SM_mt;
if (cmdline.present("-sm-Et")) sm_scale = MPPlug::SM_Et;
jet_defs.push_back( JetDefinition( new CDFMidPointPlugin (
seed_threshold, ktR,
cone_area_fraction, max_pair_size,
max_iterations, overlap_threshold,
sm_scale)));
#else // FASTJET_ENABLE_PLUGIN_CDFCONES
is_unavailable("MidPoint");
#endif // FASTJET_ENABLE_PLUGIN_CDFCONES
}
if (all_algs || cmdline.present("-pxcone")) {
#ifdef FASTJET_ENABLE_PLUGIN_PXCONE
double min_jet_energy = 5.0;
// mode: 1=e+e-, 2=pp
int mode = cmdline.value("-pxcone-mode", 2);
bool E_scheme_jets = false;
jet_defs.push_back( JetDefinition( new PxConePlugin (
ktR, min_jet_energy,
overlap_threshold, E_scheme_jets, mode)));
#else // FASTJET_ENABLE_PLUGIN_PXCONE
is_unavailable("PxCone");
#endif // FASTJET_ENABLE_PLUGIN_PXCONE
}
if (all_algs || cmdline.present("-jetclu")) {
#ifdef FASTJET_ENABLE_PLUGIN_CDFCONES
jet_defs.push_back( JetDefinition( new CDFJetCluPlugin (
ktR, overlap_threshold, seed_threshold)));
#else // FASTJET_ENABLE_PLUGIN_CDFCONES
is_unavailable("JetClu");
#endif // FASTJET_ENABLE_PLUGIN_CDFCONES
}
if (all_algs || cmdline.present("-siscone") || cmdline.present("-sisconespheri")) {
#ifdef FASTJET_ENABLE_PLUGIN_SISCONE
typedef SISConePlugin SISPlug; // for brevity
int npass = cmdline.value("-npass",0);
if (all_algs || cmdline.present("-siscone")) {
double sisptmin = cmdline.value("-sisptmin",0.0);
bool cache = cmdline.present("-cache");
SISPlug * plugin = new SISPlug (ktR, overlap_threshold,npass,sisptmin,cache);
if (cmdline.present("-sm-pt")) plugin->set_split_merge_scale(SISPlug::SM_pt);
if (cmdline.present("-sm-mt")) plugin->set_split_merge_scale(SISPlug::SM_mt);
if (cmdline.present("-sm-Et")) plugin->set_split_merge_scale(SISPlug::SM_Et);
if (cmdline.present("-sm-pttilde")) plugin->set_split_merge_scale(SISPlug::SM_pttilde);
// cause it to use the jet-definition's own recombiner
plugin->set_use_jet_def_recombiner(true);
jet_defs.push_back( JetDefinition(plugin));
}
if (all_algs || cmdline.present("-sisconespheri")) {
double sisEmin = cmdline.value("-sisEmin",0.0);
SISConeSphericalPlugin * plugin =
new SISConeSphericalPlugin(ktR, overlap_threshold,npass,sisEmin);
if (cmdline.present("-ghost-sep")) {
plugin->set_ghost_separation_scale(cmdline.value<double>("-ghost-sep"));
}
jet_defs.push_back( JetDefinition(plugin));
}
#else // FASTJET_ENABLE_PLUGIN_SISCONE
is_unavailable("SISCone");
#endif // FASTJET_ENABLE_PLUGIN_SISCONE
}
if (all_algs || cmdline.present("-d0runiicone")) {
#ifdef FASTJET_ENABLE_PLUGIN_D0RUNIICONE
double min_jet_Et = 6.0; // was 8 GeV in earlier work
jet_defs.push_back( JetDefinition(new D0RunIIConePlugin(ktR,min_jet_Et)));
#else // FASTJET_ENABLE_PLUGIN_D0RUNIICONE
is_unavailable("D0RunIICone");
#endif // FASTJET_ENABLE_PLUGIN_D0RUNIICONE
}
if (all_algs || cmdline.present("-trackjet")) {
#ifdef FASTJET_ENABLE_PLUGIN_TRACKJET
jet_defs.push_back( JetDefinition(new TrackJetPlugin(ktR)));
#else // FASTJET_ENABLE_PLUGIN_TRACKJET
is_unavailable("TrackJet");
#endif // FASTJET_ENABLE_PLUGIN_TRACKJET
}
if (all_algs || cmdline.present("-atlascone")) {
#ifdef FASTJET_ENABLE_PLUGIN_ATLASCONE
jet_defs.push_back( JetDefinition(new ATLASConePlugin(ktR)));
#else // FASTJET_ENABLE_PLUGIN_ATLASCONE
is_unavailable("ATLASCone");
#endif // FASTJET_ENABLE_PLUGIN_ATLASCONE
}
if (all_algs || cmdline.present("-eecambridge")) {
#ifdef FASTJET_ENABLE_PLUGIN_EECAMBRIDGE
jet_defs.push_back( JetDefinition(new EECambridgePlugin(ycut)));
#else // FASTJET_ENABLE_PLUGIN_EECAMBRIDGE
is_unavailable("EECambridge");
#endif // FASTJET_ENABLE_PLUGIN_EECAMBRIDGE
}
if (all_algs || cmdline.present("-jade")) {
#ifdef FASTJET_ENABLE_PLUGIN_JADE
JadePlugin::Strategy jade_strategy =
JadePlugin::Strategy(cmdline.value<int>("-jade-strategy",
JadePlugin::strategy_NNFJN2Plain));
jet_defs.push_back( JetDefinition(new JadePlugin(jade_strategy)));
#else // FASTJET_ENABLE_PLUGIN_JADE
is_unavailable("Jade");
#endif // FASTJET_ENABLE_PLUGIN_JADE
}
if (all_algs || cmdline.present("-cmsiterativecone")) {
#ifdef FASTJET_ENABLE_PLUGIN_CMSITERATIVECONE
jet_defs.push_back( JetDefinition(new CMSIterativeConePlugin(ktR,seed_threshold)));
#else // FASTJET_ENABLE_PLUGIN_CMSITERATIVECONE
is_unavailable("CMSIterativeCone");
#endif // FASTJET_ENABLE_PLUGIN_CMSITERATIVECONE
}
if (all_algs || cmdline.present("-d0runipre96cone")) {
#ifdef FASTJET_ENABLE_PLUGIN_D0RUNICONE
jet_defs.push_back( JetDefinition(new D0RunIpre96ConePlugin(ktR, seed_threshold, overlap_threshold)));
#else // FASTJET_ENABLE_PLUGIN_D0RUNICONE
is_unavailable("D0RunIpre96Cone");
#endif // FASTJET_ENABLE_PLUGIN_D0RUNICONE
}
if (all_algs || cmdline.present("-d0runicone")) {
#ifdef FASTJET_ENABLE_PLUGIN_D0RUNICONE
jet_defs.push_back( JetDefinition(new D0RunIConePlugin(ktR, seed_threshold, overlap_threshold)));
#else // FASTJET_ENABLE_PLUGIN_D0RUNICONE
is_unavailable("D0RunICone");
#endif // FASTJET_ENABLE_PLUGIN_D0RUNICONE
}
if (all_algs || cmdline.present("-gridjet")) {
#ifdef FASTJET_ENABLE_PLUGIN_GRIDJET
// we want a grid_ymax of 5.0, but when using R=0.4 (i.e. grid
// spacing of 0.8), this leads to 12.5 grid cells; depending on
// whether this is 12.499999999999 or 12.5000000....1 this gets
// converted either to 12 or 13, making the results sensitive to
// rounding errors.
//
// Instead we therefore take 4.9999999999, which avoids this problem.
double grid_ymax = 4.9999999999;
jet_defs.push_back( JetDefinition(new GridJetPlugin(grid_ymax, ktR*2.0)));
#else // FASTJET_ENABLE_PLUGIN_GRIDJET
is_unavailable("GridJet");
#endif // FASTJET_ENABLE_PLUGIN_GRIDJET
// end of checking if one asks to run a plugin (don't delete this line)
}
if (all_algs ||
cmdline.present("-kt") ||
(jet_defs.size() == 0 && !found_unavailable)) {
jet_defs.push_back( JetDefinition(kt_algorithm, ktR, E_scheme, strategy));
}
string filename = cmdline.value<string>("-file", "");
if (!cmdline.all_options_used()) {cerr <<
"Error: some options were not recognized"<<endl;
exit(-1);}
for (unsigned idef = 0; idef < jet_defs.size(); idef++) {
JetDefinition & jet_def = jet_defs[idef];
istream * istr;
if (filename == "") istr = &cin;
else istr = new ifstream(filename.c_str());
for (int iev = 0; iev < nev; iev++) {
vector<PseudoJet> jets;
vector<PseudoJet> particles;
string line;
int ndone = 0;
while (getline(*istr, line)) {
//cout << line<<endl;
istringstream linestream(line);
if (line == "#END") {
ndone += 1;
if (ndone == combine) {break;}
}
if (line.substr(0,1) == "#") {continue;}
valarray<double> fourvec(4);
if (hydjet) {
// special reading from hydjet.txt event record (though actually
// this is supposed to be a standard pythia event record, so
// being able to read from it is perhaps not so bad an idea...)
int ii, istat,id,m1,m2,d1,d2;
double mass;
linestream >> ii>> istat >> id >> m1 >> m2 >> d1 >> d2
>> fourvec[0] >> fourvec[1] >> fourvec[2] >> mass;
// current file contains mass of particle as 4th entry
if (istat == 1) {
fourvec[3] = sqrt(+pow2(fourvec[0])+pow2(fourvec[1])
+pow2(fourvec[2])+pow2(mass));
}
} else {
if (massless) {
linestream >> fourvec[0] >> fourvec[1] >> fourvec[2];
fourvec[3] = sqrt(pow2(fourvec[0])+pow2(fourvec[1])+pow2(fourvec[2]));}
else {
linestream >> fourvec[0] >> fourvec[1] >> fourvec[2] >> fourvec[3];
}
}
PseudoJet psjet(fourvec);
if (abs(psjet.rap()) < rapmax) {particles.push_back(psjet);}
}
#ifndef __FJCORE__
// add a fake underlying event which is very soft, uniformly distributed
// in eta,phi so as to allow one to reconstruct the area that is associated
// with each jet.
if (add_dense_coverage) {
GhostedAreaSpec ghosted_area_spec(ghost_maxrap);
//GhostedAreaSpec ghosted_area_spec(-2.0,4.0); // asymmetric range
// for plots, reduce the scatter default of 1, to avoid "holes"
// in the subsequent calorimeter view
ghosted_area_spec.set_grid_scatter(0.5);
ghosted_area_spec.add_ghosts(particles);
//----- old code ------------------
// srand(2);
// int nphi = 60;
// int neta = 100;
// double kt = 1e-1;
// for (int iphi = 0; iphi<nphi; iphi++) {
// for (int ieta = -neta; ieta<neta+1; ieta++) {
// double phi = (iphi+0.5) * (twopi/nphi) + rand()*0.001/RAND_MAX;
// double eta = ieta * (10.0/neta) + rand()*0.001/RAND_MAX;
// kt = 1e-20*(1+rand()*0.1/RAND_MAX);
// double pminus = kt*exp(-eta);
// double pplus = kt*exp(+eta);
// double px = kt*sin(phi);
// double py = kt*cos(phi);
// //cout << kt<<" "<<eta<<" "<<phi<<"\n";
// PseudoJet mom(px,py,0.5*(pplus-pminus),0.5*(pplus+pminus));
// particles.push_back(mom);
// }
// }
}
#else
add_dense_coverage = false;
#endif
// select the particles that pass the selection cut
particles = particles_sel(particles);
// allow user to skip some number of events (e.g. for easier bug-chasing)
if (iev < skip) continue;
for (int irepeat = 0; irepeat < repeat ; irepeat++) {
int nparticles = particles.size();
try {
// one could use a unique_ptr here, but SharedPtr is available independently of C++ standard
SharedPtr<ClusterSequence> clust_seq;
if (do_areas) {
#ifndef __FJCORE__
clust_seq.reset(new ClusterSequenceArea(particles,jet_def,area_def));
#endif
} else {
clust_seq.reset(new ClusterSequence(particles,jet_def,write));
}
if (compare_strategy != plugin_strategy) {
do_compare_strategy(iev, particles, jet_def, *clust_seq, compare_strategy);
}
// repetitive output
if (repeatinclkt >= 0.0) {
vector<PseudoJet> jets_local = sorted_by_pt(clust_seq->inclusive_jets(repeatinclkt));
}
if (irepeat != 0) {continue;}
cout << "iev "<<iev<< ": number of particles = "<< nparticles << endl;
cout << "strategy used = "<< clust_seq->strategy_string()<< endl;
if (iev == 0) cout << "Jet Definition: " << jet_def.description() << " (" << fastjet_version_string() << ")" << endl;
#ifndef __FJCORE__
if (do_areas && iev == 0) cout << "Area definition: " << area_def.description() << endl;
#endif
// now provide some nice output...
if (inclkt >= 0.0) {
vector<PseudoJet> jets_local = sorted_by_pt(clust_seq->inclusive_jets(inclkt));
print_jets(jets_local, show_constituents);
}
if (excln > 0) {
cout << "Printing "<<excln<<" exclusive jets\n";
print_jets(clust_seq->exclusive_jets(excln), show_constituents);
}
if (excld > 0.0) {
cout << "Printing exclusive jets for d = "<<excld<<"\n";
print_jets(clust_seq->exclusive_jets(excld), show_constituents);
}
if (excly > 0.0) {
cout << "Printing exclusive jets for ycut = "<<excly<<"\n";
print_jets(clust_seq->exclusive_jets_ycut(excly), show_constituents);
}
if (get_all_dij) {
for (int i = nparticles-1; i >= 0; i--) {
printf("d for n = %4d -> %4d is %14.5e\n", i+1, i, clust_seq->exclusive_dmerge(i));
}
}
if (get_all_yij) {
for (int i = nparticles-1; i >= 0; i--) {
printf("y for n = %4d -> %4d is %14.5e\n", i+1, i, clust_seq->exclusive_ymerge(i));
}
}
// have the option of printing out the subjets (at scale dcut) of
// each inclusive jet
if (subdcut >= 0.0) {
print_jets_and_sub(clust_seq->inclusive_jets(), subdcut);
}
// useful for testing that recombination sequences are unique
if (unique_write) {
vector<int> unique_history = clust_seq->unique_history_order();
// construct the inverse of the above mapping
vector<int> inv_unique_history(clust_seq->history().size());
for (unsigned int i = 0; i < unique_history.size(); i++) {
inv_unique_history[unique_history[i]] = i;}
for (unsigned int i = 0; i < unique_history.size(); i++) {
ClusterSequence::history_element el =
clust_seq->history()[unique_history[i]];
int uhp1 = el.parent1>=0 ? inv_unique_history[el.parent1] : el.parent1;
int uhp2 = el.parent2>=0 ? inv_unique_history[el.parent2] : el.parent2;
printf("%7d u %15.8e %7d u %7d u\n",i,el.dij,uhp1, uhp2);
}
}
#ifdef FASTJET_ENABLE_PLUGIN_SISCONE
// provide some complementary information for SISCone
if (show_cones) {
const SISConeExtras * extras =
dynamic_cast<const SISConeExtras *>(clust_seq->extras());
if (extras == 0)
throw fastjet::Error("extras object for SISCone was null (this can happen with certain area types)");
cout << "most ambiguous split (difference in squared dist) = "
<< extras->most_ambiguous_split() << endl;
vector<fastjet::PseudoJet> stable_cones(extras->stable_cones());
stable_cones = sorted_by_rapidity(stable_cones);
for (unsigned int i = 0; i < stable_cones.size(); i++) {
//if (stable_cones[i].phi() < 5.0 && stable_cones[i].phi() > 4.0) {
printf("%5u %15.8f %15.8f %15.8f\n",
i,stable_cones[i].rap(),stable_cones[i].phi(),
stable_cones[i].perp() );
//}
}
// also show passes for jets
vector<PseudoJet> sisjets = clust_seq->inclusive_jets();
printf("\n%15s %15s %15s %12s %8s %8s\n","rap","phi","pt","user-index","pass","nconst");
for (unsigned i = 0; i < sisjets.size(); i++) {
printf("%15.8f %15.8f %15.8f %12d %8d %8u\n",
sisjets[i].rap(), sisjets[i].phi(), sisjets[i].perp(),
sisjets[i].user_index(), extras->pass(sisjets[i]),
(unsigned int) clust_seq->constituents(sisjets[i]).size()
);
}
}
#endif // FASTJET_ENABLE_PLUGIN_SISCONE
#ifndef __FJCORE__
if (do_bkgd) {
double rho, sigma, mean_area, empty_area, n_empty_jets;
ClusterSequenceAreaBase * csab =
dynamic_cast<ClusterSequenceAreaBase *>(clust_seq.get());
BackgroundEstimatorBase * bge_ptr = 0;
if (do_bkgd_csab) {
csab->get_median_rho_and_sigma(bkgd_range, true, rho, sigma, mean_area);
empty_area = csab->empty_area(bkgd_range);
n_empty_jets = csab->n_empty_jets(bkgd_range);
} else if (do_bkgd_jetmedian) {
JetMedianBackgroundEstimator * bge = new JetMedianBackgroundEstimator(bkgd_range);
bge_ptr = bge;
// may be null
bge->set_rescaling_class(bkgd_rescaling);
bge->set_provide_fj2_sigma(do_bkgd_fj2);
if (bkgd_alt_ktR > 0) {
ClusterSequenceAreaBase * clust_seq_bkgd =
new ClusterSequenceArea(particles, JetDefinition(kt_algorithm, bkgd_alt_ktR), area_def);
cout << "Alt JetDef for background-estimation CSAB: " << clust_seq_bkgd->jet_def().description() << endl;
bge->set_cluster_sequence(*clust_seq_bkgd);
clust_seq_bkgd->delete_self_when_unused();
} else {
bge->set_cluster_sequence(*csab);
}
if (!do_bkgd_localrange) {
rho = bge->rho();
sigma = bge->sigma();
mean_area = bge->mean_area();
empty_area = bge->empty_area();
n_empty_jets = bge->n_empty_jets();
}
} else {
assert(do_bkgd_gridmedian);
double grid_rapmin, grid_rapmax;
bkgd_range.get_rapidity_extent(grid_rapmin, grid_rapmax);
GridMedianBackgroundEstimator * bge = new GridMedianBackgroundEstimator(grid_rapmax, 2*ktR);
bge_ptr = bge;
bge->set_rescaling_class(bkgd_rescaling);
bge->set_particles(particles);
rho = bge->rho();
sigma = bge->sigma();
mean_area = bge->mean_area();
empty_area = 0;
n_empty_jets = 0;
}
if (do_bkgd_localrange || do_subtractor) {
assert(bge_ptr != 0);
cout << "Background estimator: " << bge_ptr->description() << endl;
//vector<PseudoJet>
jets = SelectorAbsRapMax(3.0)(sorted_by_pt(csab->inclusive_jets()));
vector<PseudoJet> subjets;
if (do_subtractor) {
Subtractor subtractor(bge_ptr);
subtractor.set_use_rho_m(true);
subtractor.set_safe_mass(true);
cout << "Subtractor: " << subtractor.description() << endl;
subjets = subtractor(jets);
}
print_jets_bkgd(jets, subjets, bge_ptr, do_subtractor);
// cout << "i pt rap phi m rho rho_m sigma sigma_m" << endl;
// if (do_subtractor) cout << "isub ptsub rapsub phisub msub area" << endl;
// for (unsigned i = 0; i < jets.size(); i++) {
// const PseudoJet & jet = jets[i];
// cout << i << " "
// << " " << jet.pt() << " " << jet.rap() << " " << jet.phi() << " " << jet.m()
// << " " << bge_ptr->rho(jet) << " " << bge_ptr->rho_m(jet)
// << " " << bge_ptr->sigma(jet) << " " << bge_ptr->sigma_m(jet) << endl;
// if (do_subtractor) {
// const PseudoJet & subjet = subjets[i];
// cout << i << "sub"
// << " " << subjet.pt() << " " << subjet.rap() << " " << subjet.phi() << " " << subjet.m()
// << " " << jet.area() << endl;
// }
// }
} else {
cout << " rho = " << rho
<< ", sigma = " << sigma
<< ", mean_area = " << mean_area
<< ", empty_area = " << empty_area
<< ", n_empty_jets = " << n_empty_jets
<< endl;
}
if (bge_ptr != 0) delete bge_ptr;
}
#endif
} // try
catch (Error &fjerr) {
cout << "Caught fastjet error, exiting gracefully" << endl;
exit(0);
}
} // irepeat
} // iev
// if we've instantiated a plugin, delete it
if (jet_def.strategy()==plugin_strategy){
delete jet_def.plugin();
}
// close any file that we've opened
if (istr != &cin) delete istr;
} //
}
//------ HELPER ROUTINES -----------------------------------------------
/// print a single jet
void print_jet (const PseudoJet & jet) {
unsigned int n_constituents = jet.constituents().size();
printf("%15.8f %15.8f %15.8f %8u\n",
jet.rap(), jet.phi(), jet.perp(), n_constituents);
}
//----------------------------------------------------------------------
void print_jets(const vector<PseudoJet> & jets_in, bool show_constituents) {
vector<PseudoJet> jets;
if (ee_print) {
jets = sorted_by_E(jets_in);
for (unsigned int j = 0; j < jets.size(); j++) {
printf("%5u %15.8f %15.8f %15.8f %15.8f\n",
j,jets[j].px(),jets[j].py(),jets[j].pz(),jets[j].E());
if (show_constituents) {
vector<PseudoJet> const_jets = jets[j].constituents();
for (unsigned int k = 0; k < const_jets.size(); k++) {
printf(" jet%03u %15.8f %15.8f %15.8f %15.8f\n",j,const_jets[k].px(),
const_jets[k].py(),const_jets[k].pz(),const_jets[k].E());
}
cout << "\n\n";
}
}
} else {
jets = sorted_by_pt(jets_in);
for (unsigned int j = 0; j < jets.size(); j++) {
printf("%5u %15.8f %15.8f %15.8f",
j,jets[j].rap(),jets[j].phi(),jets[j].perp());
// also print out the scalar area and the perp component of the
// 4-vector (just enough to check a reasonable 4-vector?)
#ifndef __FJCORE__
if (do_areas) printf(" %15.8f %15.8f", jets[j].area(),
jets[j].area_4vector().perp());
cout << "\n";
#endif
if (show_constituents) {
vector<PseudoJet> const_jets = jets[j].constituents();
for (unsigned int k = 0; k < const_jets.size(); k++) {
printf(" jet%03u %15.8f %15.8f %15.8f %5d\n",j,const_jets[k].rap(),
const_jets[k].phi(),sqrt(const_jets[k].kt2()), const_jets[k].cluster_hist_index());
}
cout << "\n\n";
}
}
}
if (rootfile != "") {
ofstream ostr(rootfile.c_str());
ostr << "# " << cmdline_p->command_line() << endl;
ostr << "# output for root" << endl;
assert(jets.size() > 0);
jets[0].validated_cs()->print_jets_for_root(jets,ostr);
}
}
//----- SUBJETS --------------------------------------------------------
/// a function that pretty prints a list of jets and the subjets for each
/// one
void print_jets_and_sub (const vector<PseudoJet> & jets, double dcut) {
// sort jets into increasing pt
vector<PseudoJet> sorted_jets = sorted_by_pt(jets);
// label the columns
printf("Printing jets and their subjets with subdcut = %10.5f\n",dcut);
printf("%5s %15s %15s %15s %15s\n","jet #", "rapidity",
"phi", "pt", "n constituents");
// the kind of subjet finding used to test consistency among them
SubType sub_type = subtype_internal;
//SubType sub_type = subtype_newclust_dcut;
//SubType sub_type = subtype_newclust_R;
// print out the details for each jet
//for (unsigned int i = 0; i < sorted_jets.size(); i++) {
for (vector<PseudoJet>::const_iterator jet = sorted_jets.begin();
jet != sorted_jets.end(); jet++) {
const JetDefinition & jet_def = jet->validated_cs()->jet_def();
// if jet pt^2 < dcut with kt alg, then some methods of
// getting subjets will return nothing -- so skip the jet
if (jet_def.jet_algorithm() == kt_algorithm
&& jet->perp2() < dcut) continue;
printf("%5u ",(unsigned int) (jet - sorted_jets.begin()));
print_jet(*jet);
vector<PseudoJet> subjets;
ClusterSequence * cspoint;
if (sub_type == subtype_internal) {
cspoint = 0;
subjets = jet->exclusive_subjets(dcut);
double ddnp1 = jet->exclusive_subdmerge_max(subjets.size());
double ddn = jet->exclusive_subdmerge_max(subjets.size()-1);
cout << " for " << ddnp1 << " < d < " << ddn << " one has " << endl;
} else if (sub_type == subtype_newclust_dcut) {
cspoint = new ClusterSequence(jet->constituents(), jet_def);
subjets = cspoint->exclusive_jets(dcut);
} else if (sub_type == subtype_newclust_R) {
assert(jet_def.jet_algorithm() == cambridge_algorithm);
JetDefinition subjd(jet_def.jet_algorithm(), jet_def.R()*sqrt(dcut));
cspoint = new ClusterSequence(jet->constituents(), subjd);
subjets = cspoint->inclusive_jets();
} else {
cerr << "unrecognized subtype for subjet finding" << endl;
exit(-1);
}
subjets = sorted_by_pt(subjets);
for (unsigned int j = 0; j < subjets.size(); j++) {
printf(" -sub-%02u ",j);
print_jet(subjets[j]);
}
if (cspoint != 0) delete cspoint;
//ClusterSequence subseq(clust_seq->constituents(sorted_jets[i]),
// JetDefinition(cambridge_algorithm, 0.4));
//vector<PseudoJet> subjets = sorted_by_pt(subseq.inclusive_jets());
//for (unsigned int j = 0; j < subjets.size(); j++) {
// printf(" -sub-%02u ",j);
// print_jet(subseq, subjets[j]);
//}
}
}
/// if abs(x)<precision/2, return 0
double make_safe_zero_truncation(double x, double precision){
return std::abs(x)<0.5*precision ? 0.0 : x;
}
#ifndef __FJCORE__
void print_jets_bkgd(const vector<PseudoJet> &jets,
const vector<PseudoJet> &subtracted_jets,
BackgroundEstimatorBase * bge_ptr,
bool do_subtractor){
printf("Printing jets, background information");
if (do_subtractor)
printf(" and subtracted jets\n");
printf("%5s %15s %15s %15s %15s %15s %15s %15s %15s\n","jet #",
"rapidity", "phi", "pt", "pt^2+m^2",
"rho", "rho_m", "sigma", "sigma_m");
if (do_subtractor)
printf("%5s %15s %15s %15s %15s %15ss\n","jet #",
"rapidity", "phi", "pt", "sqrt(pt^2+m^2)", "area");
for (unsigned i = 0; i < jets.size(); i++) {
const PseudoJet & jet = jets[i];
BackgroundEstimate estimate = bge_ptr->estimate(jet);
// Note that the values of rho_m sometimes comes out as +- a very
// small number and the format can produce either 0.00000000 or
// -0.00000000. The call to "make_safe_zero_truncation" makes sure it is
// printed wo the - sign in each case
printf("%5u %15.8f %15.8f %15.8f %15.8f %15.8f %15.8f %15.8f %15.8f\n", i,
jet.rap(), jet.phi(), jet.perp(), jet.mt(),
estimate.rho(), make_safe_zero_truncation(estimate.rho_m(),1e-8),
estimate.sigma(), estimate.sigma_m());
if (do_subtractor) {
const PseudoJet & subjet = subtracted_jets[i];
printf("%5u %15.8f %15.8f %15.8f %15.8f %15.8f\n", i,
subjet.rap(), subjet.phi(), subjet.perp(), subjet.mt(), jet.area());
}
}
}
#endif// __FJCORE__
//----------------------------------------------------------------------
void signal_failed_comparison(int iev,
const string & message,
const vector<PseudoJet> & particles) {
cout << "# failed comparison, reason is " << message << endl;
cout << "# iev = " << iev << endl;
cout << setprecision(16);
for (unsigned i = 0; i < particles.size(); i++) {
const PseudoJet & p = particles[i];
cout << p.px() << " "
<< p.py() << " "
<< p.pz() << " "
<< p.E () << endl;
}
cout << "#END" << endl;
}
//----------------------------------------------------------------------
void do_compare_strategy(int iev,
const vector<PseudoJet> & particles,
const JetDefinition & jet_def,
const ClusterSequence & cs,
int compare_strategy) {
// create a jet def with the reference comparison strategy
JetDefinition jet_def_ref(jet_def.jet_algorithm(),
jet_def.R(),
jet_def.recombination_scheme(),
Strategy(compare_strategy));
// do the clustering
ClusterSequence cs_ref(particles, jet_def_ref);
// now compare the outputs. At this stage just based on the clustering
// sequence - get more sophisticated later...
const vector<ClusterSequence::history_element> & history_in = cs.history();
const vector<ClusterSequence::history_element> & history_ref = cs_ref.history();
if (history_in.size() != history_ref.size()) {
signal_failed_comparison(iev, "history sizes do not match", particles);
}
// now run over each clustering step to do the comparison
for (unsigned i = cs.n_particles(); i < history_in.size(); i++) {
bool fail_parents = (history_in[i].parent1 != history_ref[i].parent1 ||
history_in[i].parent2 != history_ref[i].parent2);
bool fail_dij = (history_in[i].dij != history_ref[i].dij);
if (fail_parents || fail_dij) {
ostringstream ostr;
ostr << "at step " << i << ", ";
if (fail_parents) ostr << "parents do not match, ";
if (fail_dij) ostr << "dij does not match, ";
ostr << "history in (p1, p2, dij) = "
<< history_in[i].parent1 << " " << history_in[i].parent2 << " " << history_in[i].dij;
ostr << ", history ref (p1, p2, dij) = "
<< history_ref[i].parent1 << " " << history_ref[i].parent2 << " " << history_ref[i].dij;
signal_failed_comparison(iev, ostr.str(), particles);
break;
}
}
}
|