Skip to content

Commit

Permalink
updates from code-format
Browse files Browse the repository at this point in the history
  • Loading branch information
smrenna committed Sep 3, 2020
1 parent a59026e commit 32258e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ bool Pythia8Hadronizer::initializeForInternalPartons() {
if (biasedTauDecayer) {
if (!fBiasedTauDecayer.get()) {
Pythia8::Info localInfo = fMasterGen->info;
fBiasedTauDecayer.reset(new BiasedTauDecayer(&localInfo,&(fMasterGen->settings)));
fBiasedTauDecayer.reset(new BiasedTauDecayer(&localInfo, &(fMasterGen->settings)));
}
std::vector<int> handledParticles;
handledParticles.push_back(15);
Expand Down Expand Up @@ -569,7 +569,7 @@ bool Pythia8Hadronizer::initializeForExternalPartons() {
if (biasedTauDecayer) {
if (!fBiasedTauDecayer.get()) {
Pythia8::Info localInfo = fMasterGen->info;
fBiasedTauDecayer.reset(new BiasedTauDecayer(&localInfo,&(fMasterGen->settings)));
fBiasedTauDecayer.reset(new BiasedTauDecayer(&localInfo, &(fMasterGen->settings)));
}
std::vector<int> handledParticles;
handledParticles.push_back(15);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ using namespace Pythia8;

BiasedTauDecayer::BiasedTauDecayer(Info* infoPtr, Settings* settingsPtr) {
decayer = TauDecays();
decayer.initInfoPtr( *infoPtr );
decayer.initInfoPtr(*infoPtr);
decayer.init();
filter_ = settingsPtr->flag("BiasedTauDecayer:filter");
eDecays_ = settingsPtr->flag("BiasedTauDecayer:eDecays");
Expand Down

0 comments on commit 32258e2

Please sign in to comment.