Skip to content

Commit

Permalink
Applied clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
trtomei committed Nov 16, 2020
1 parent 70efd3b commit 972f0b6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
1 change: 0 additions & 1 deletion DataFormats/HLTReco/interface/TriggerEventWithRefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,6 @@ namespace trigger {
TriggerRefsCollections::getObjects(id, l1tkem, begin, end);
}


void getObjects(size_type filter, Vids& ids, VRl1tjet& l1tjet) const {
const size_type begin(l1tjetSlice(filter).first);
const size_type end(l1tjetSlice(filter).second);
Expand Down
6 changes: 2 additions & 4 deletions DataFormats/HLTReco/interface/TriggerRefsCollections.h
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ namespace trigger {
l1tmuonIds_.push_back(id);
l1tmuonRefs_.push_back(ref);
}
void addObject(int id, const l1t::TkMuonRef& ref) {
void addObject(int id, const l1t::TkMuonRef& ref) {
l1tkmuonIds_.push_back(id);
l1tkmuonRefs_.push_back(ref);
}
Expand Down Expand Up @@ -449,7 +449,7 @@ namespace trigger {
l1tmuonRefs_.insert(l1tmuonRefs_.end(), refs.begin(), refs.end());
return l1tmuonIds_.size();
}
size_type addObjects(const Vids& ids, const VRl1tkmuon& refs) {
size_type addObjects(const Vids& ids, const VRl1tkmuon& refs) {
assert(ids.size() == refs.size());
l1tkmuonIds_.insert(l1tkmuonIds_.end(), ids.begin(), ids.end());
l1tkmuonRefs_.insert(l1tkmuonRefs_.end(), refs.begin(), refs.end());
Expand Down Expand Up @@ -1152,7 +1152,6 @@ namespace trigger {
return;
}


void getObjects(Vids& ids, VRl1tjet& refs) const { getObjects(ids, refs, 0, l1tjetIds_.size()); }
void getObjects(Vids& ids, VRl1tjet& refs, size_type begin, size_type end) const {
assert(begin <= end);
Expand Down Expand Up @@ -1223,7 +1222,6 @@ namespace trigger {
return;
}


void getObjects(Vids& ids, VRl1ttau& refs) const { getObjects(ids, refs, 0, l1ttauIds_.size()); }
void getObjects(Vids& ids, VRl1ttau& refs, size_type begin, size_type end) const {
assert(begin <= end);
Expand Down
7 changes: 3 additions & 4 deletions DataFormats/HLTReco/interface/TriggerTypeDefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ namespace trigger {
/// L1 - using cases as defined in enum L1GtObject, file:
/// DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerReadoutSetupFwd.h"


TriggerL1Mu = -81,
TriggerL1NoIsoEG = -82, // legacy and stage1
TriggerL1IsoEG = -83, // legacy and stage1
Expand Down Expand Up @@ -65,13 +64,13 @@ namespace trigger {
TriggerL1TkMu = -114,
TriggerL1TkEle = -115,
TriggerL1PFJet = -116,
TriggerL1TkEm = -117, // used for photons
TriggerL1TkEm = -117, // used for photons
TriggerL1PFMET = -118,
TriggerL1PFETT = -119,
TriggerL1PFHT = -120,
TriggerL1PFHT = -120,
TriggerL1PFMHT = -121,
TriggerL1PFTrack = -122,
TriggerL1Vertex = -123,
TriggerL1Vertex = -123,

/// HLT
TriggerPhoton = +81,
Expand Down

0 comments on commit 972f0b6

Please sign in to comment.