Skip to content

Commit

Permalink
use smaller R for kTmax ana
Browse files Browse the repository at this point in the history
  • Loading branch information
mverwe committed Sep 28, 2023
1 parent a752cb9 commit e9bf1d8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions runHardKtVLEBkg.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ int main (int argc, char ** argv) {
treeWriter trwSig("jetTreeSig");

//Jet definition
double R = 0.4;
double R = 0.2;
double ghostRapMax = 6.0;
double ghost_area = 0.005;
int active_area_repeats = 1;
Expand Down Expand Up @@ -172,7 +172,9 @@ int main (int argc, char ** argv) {
//---------------------------------------------------------------------------
// Full event constituent subtraction
//---------------------------------------------------------------------------
csSubtractorFullEvent csSubFull( 0., 0.25, 0.005, 2.5); // alpha, rParam, ghA, ghRapMax
//csSubtractorFullEvent csSubFull( 0., 0.25, 0.005, 2.5); // alpha, rParam, ghA, ghRapMax
//using smaller Rmax for smaller jets
csSubtractorFullEvent csSubFull( 0., 0.1, 0.005, 2.5); // alpha, rParam, ghA, ghRapMax
csSubFull.setRho(csSub.getRho());
csSubFull.setRhom(csSub.getRhoM());
csSubFull.setInputParticles(particlesMerged);
Expand Down

0 comments on commit e9bf1d8

Please sign in to comment.