Skip to content

Commit

Permalink
fix variable names for input tags
Browse files Browse the repository at this point in the history
  • Loading branch information
lgray committed Oct 27, 2013
1 parent 1c86c79 commit f808ec7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Expand Up @@ -80,8 +80,8 @@ class PFECALSuperClusterProducer : public edm::EDProducer {

edm::EDGetTokenT<edm::View<reco::PFCluster> > inputTagPFClusters_;
edm::EDGetTokenT<reco::PFCluster::EEtoPSAssociation> inputTagPFClustersES_;
edm::EDGetTokenT<EcalRecHitCollection> inputTagEBReduced_;
edm::EDGetTokenT<EcalRecHitCollection> inputTagEEReduced_;
edm::EDGetTokenT<EcalRecHitCollection> inputTagEBRecHits_;
edm::EDGetTokenT<EcalRecHitCollection> inputTagEERecHits_;
edm::EDGetTokenT<reco::VertexCollection> inputTagVertices_;

std::string PFBasicClusterCollectionBarrel_;
Expand Down
Expand Up @@ -146,10 +146,10 @@ PFECALSuperClusterProducer::PFECALSuperClusterProducer(const edm::ParameterSet&
consumes<edm::View<reco::PFCluster> >(iConfig.getParameter<InputTag>("PFClusters"));
inputTagPFClustersES_ =
consumes<reco::PFCluster::EEtoPSAssociation>(iConfig.getParameter<InputTag>("ESAssociation"));
inputTagEBReduced_ =
mayConsume<EcalRecHitCollection>(iConfig.getParameter<InputTag>("reducedEcalRecHitsEB"));
inputTagEEReduced_ =
mayConsume<EcalRecHitCollection>(iConfig.getParameter<InputTag>("reducedEcalRecHitsEE"));
inputTagEBRecHits_ =
mayConsume<EcalRecHitCollection>(iConfig.getParameter<InputTag>("ecalRecHitsEB"));
inputTagEERecHits_ =
mayConsume<EcalRecHitCollection>(iConfig.getParameter<InputTag>("ecalRecHitsEE"));
inputTagVertices_ =
mayConsume<reco::VertexCollection>(iConfig.getParameter<InputTag>("vertexCollection"));

Expand Down

0 comments on commit f808ec7

Please sign in to comment.