Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 75647
b: "refs/heads/CMSSW_7_1_X"
c: 6819c0c
h: "refs/heads/CMSSW_7_1_X"
i:
  75645: 92a4de2
  75643: bbfcad8
  75639: 35fd5d3
  75631: 462d417
  75615: b70ab59
  75583: 1175526
  75519: 47a0175
v: v3
  • Loading branch information
Jeff Klukas committed Oct 16, 2009
1 parent b6fe3ee commit d3dbd95
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
refs/heads/gh-pages: 09c786f70121f131b3715aaf3464996502bbeb7e
"refs/heads/CMSSW_7_1_X": 205b7631a3db4dd9b48023608c408846522afe8b
"refs/heads/CMSSW_7_1_X": 6819c0cccc913aefb8fb8edba7535a18a36f4754
13 changes: 7 additions & 6 deletions trunk/HLTriggerOffline/Muon/src/HLTMuonValidator.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** \file HLTMuonValidator.cc
* $Date: 2009/09/30 20:49:33 $
* $Revision: $
* $Date: 2009/10/15 19:58:08 $
* $Revision: 1.1 $
*/

#include "HLTriggerOffline/Muon/interface/HLTMuonValidator.h"
Expand Down Expand Up @@ -147,10 +147,11 @@ HLTMuonValidator::analyze(const Event & iEvent, const EventSetup & iSetup)
iEvent.getByLabel("hltL2MuonCandidates", handleCandsL2);
iEvent.getByLabel("hltL3MuonCandidates", handleCandsL3);

l1extra::L1MuonParticleCollection candsL1 = * handleCandsL1;;
std::vector<reco::RecoChargedCandidateCollection> candsHlt;
candsHlt.push_back(* handleCandsL2);
candsHlt.push_back(* handleCandsL3);
L1MuonParticleCollection candsL1;
if (handleCandsL1.isValid()) candsL1 = * handleCandsL1;
vector<RecoChargedCandidateCollection> candsHlt(2);
if (handleCandsL2.isValid()) candsHlt[0] = * handleCandsL2;
if (handleCandsL3.isValid()) candsHlt[1] = * handleCandsL3;
RecoChargedCandidateCollection & candsL2 = candsHlt[0];
RecoChargedCandidateCollection & candsL3 = candsHlt[1];

Expand Down

0 comments on commit d3dbd95

Please sign in to comment.