Skip to content

Commit

Permalink
Allow enabling duplicate removal from CMSSW
Browse files Browse the repository at this point in the history
  • Loading branch information
makortel committed Sep 13, 2019
1 parent d9dfbda commit e8f235a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ConfigWrapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ namespace mkfit {
fillZRgridME();
}

void setRemoveDuplicates(bool removeDuplicates) {
Config::removeDuplicates = removeDuplicates;
}

void setNTotalLayers(int nTotalLayers) {
Config::nTotalLayers = nTotalLayers;
}
Expand Down
1 change: 1 addition & 0 deletions ConfigWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ namespace mkfit {
};

void initializeForCMSSW(SeedCleaningOpts seedClean, BackwardFit backfit, bool silent);
void setRemoveDuplicates(bool removeDuplicates);

void setNTotalLayers(int nTotalLayers);
}
Expand Down

0 comments on commit e8f235a

Please sign in to comment.