Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
ccaillol committed Sep 15, 2022
1 parent ef80134 commit 4fc043d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions L1Trigger/L1TTrackMatch/plugins/L1TrackJetProducer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class L1TrackJetProducer : public stream::EDProducer<> {
};

L1TrackJetProducer::L1TrackJetProducer(const ParameterSet &iConfig)
: tTopoToken_(esConsumes<TrackerTopology, TrackerTopologyRcd>(edm::ESInputTag("", ""))),
: tTopoToken_(esConsumes<TrackerTopology, TrackerTopologyRcd>(edm::ESInputTag("", ""))),
trackToken_(consumes<vector<TTTrack<Ref_Phase2TrackerDigi_>>>(iConfig.getParameter<InputTag>("L1TrackInputTag"))),
PVtxToken_(consumes<vector<l1t::Vertex>>(iConfig.getParameter<InputTag>("L1PVertexCollection"))) {
trkZMax_ = (float)iConfig.getParameter<double>("trk_zMax");
Expand Down Expand Up @@ -146,7 +146,7 @@ void L1TrackJetProducer::produce(Event &iEvent, const EventSetup &iSetup) {
unique_ptr<TkJetCollection> L1L1TrackJetProducer(new TkJetCollection);

// Read inputs
const TrackerTopology& tTopo = iSetup.getData(tTopoToken_);
const TrackerTopology &tTopo = iSetup.getData(tTopoToken_);

edm::Handle<vector<TTTrack<Ref_Phase2TrackerDigi_>>> TTTrackHandle;
iEvent.getByToken(trackToken_, TTTrackHandle);
Expand Down

0 comments on commit 4fc043d

Please sign in to comment.