Skip to content

Commit b5e4b1a

Browse files
committed
[GENERATORS] apply code-format
1 parent fdfb5e0 commit b5e4b1a

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

GeneratorInterface/Core/bin/externalGenerator.cc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,10 @@ int main(int argc, char* argv[]) {
8383
boost::program_options::options_description desc(descString);
8484

8585
desc.add_options()(kHelpCommandOpt, "produce help message")(
86-
kMemoryNameCommandOpt, boost::program_options::value<std::string>(), "memory name")(
87-
kUniqueIDCommandOpt, boost::program_options::value<std::string>(), "unique id")(kVerboseCommandOpt,
88-
"verbose output");
86+
kMemoryNameCommandOpt,
87+
boost::program_options::value<std::string>(),
88+
"memory name")(kUniqueIDCommandOpt, boost::program_options::value<std::string>(), "unique id")(kVerboseCommandOpt,
89+
"verbose output");
8990

9091
boost::program_options::positional_options_description p;
9192
p.add(kMemoryNameOpt, 1);

GeneratorInterface/LHEInterface/src/LH5Reader.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <cstdio>
77
#include <cstring>
88
#include <fstream>
9-
#include <sstream>
9+
#include <sstream>
1010
#include <string>
1111
#include <vector>
1212

GeneratorInterface/Pythia8Interface/plugins/JetMatchingHook.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ JetMatchingHook::JetMatchingHook(const edm::ParameterSet& ps, const Info* info)
2727
fRunBlock(nullptr),
2828
fEventBlock(nullptr),
2929
fEventNumber(0),
30-
// fInfoPtr(info),
30+
// fInfoPtr(info),
3131
fJetMatching(nullptr),
3232
fJetInputFill(nullptr),
3333
fIsInitialized(false) {
34-
// assert(fInfoPtr);
34+
// assert(fInfoPtr);
3535

3636
std::string scheme = ps.getParameter<std::string>("scheme");
3737

GeneratorInterface/Pythia8Interface/plugins/Py8MassGun.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11

22
#include <memory>
33

4-
5-
#include "GeneratorInterface/Core/interface/GeneratorFilter.h"
4+
#include "GeneratorInterface/Core/interface/GeneratorFilter.h"
65
#include "GeneratorInterface/ExternalDecays/interface/ExternalDecayDriver.h"
76

87
#include "GeneratorInterface/Pythia8Interface/interface/Py8GunBase.h"

SimDataFormats/HTXS/interface/HiggsTemplateCrossSections.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ namespace HTXS {
503503
template <class Vvec4>
504504
inline TLVs MakeTLVs(Vvec4 const &rivet_jets) {
505505
TLVs jets;
506-
for (const auto& jet : rivet_jets)
506+
for (const auto &jet : rivet_jets)
507507
jets.push_back(MakeTLV(jet));
508508
return jets;
509509
}

0 commit comments

Comments
 (0)