Skip to content

Commit

Permalink
Update RecoLocalTracker/SiStripClusterizer/plugins/SiStripClusters2Ap…
Browse files Browse the repository at this point in the history
…proxClustersv1.cc

Co-authored-by: Marco Musich <[email protected]>
  • Loading branch information
icali and mmusich authored Apr 27, 2021
1 parent 37babea commit 1a03de5
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ SiStripClusters2ApproxClustersv1::SiStripClusters2ApproxClustersv1(const edm::Pa
void SiStripClusters2ApproxClustersv1::produce(edm::Event& e, edm::EventSetup const&){
std::unique_ptr<edmNew::DetSetVector< SiStripApproximateClusterv1 > > result(new edmNew::DetSetVector< SiStripApproximateClusterv1 > );

edm::Handle<edmNew::DetSetVector< SiStripCluster >> clusterCollection;
e.getByToken(clusterToken, clusterCollection);
edm::Handle<edmNew::DetSetVector< SiStripCluster >> clusterCollection = e.getHandle(clusterToken_)

uint32_t minID = 470444276;
int maxFirst = -1;
Expand Down Expand Up @@ -48,4 +47,3 @@ void SiStripClusters2ApproxClustersv1::produce(edm::Event& e, edm::EventSetup co
e.put(std::move(result));
}


0 comments on commit 1a03de5

Please sign in to comment.