Skip to content

Commit

Permalink
Merge pull request #11351 from fwyzard/multithreading_74x_EgammaHLT
Browse files Browse the repository at this point in the history
multithreading fix for 74x: E/Gamma HLT modules
  • Loading branch information
cmsbuild committed Oct 9, 2015
2 parents ccdae08 + 5d68dc2 commit b5f9902
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions HLTrigger/special/interface/HLTRegionalEcalResonanceFilter.h
Expand Up @@ -15,7 +15,7 @@ Description: Producer for EcalRecHits to be used for pi0/eta ECAL calibration.

// user include files
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/EDFilter.h"
#include "FWCore/Framework/interface/stream/EDFilter.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/ESHandle.h"
Expand Down Expand Up @@ -71,7 +71,8 @@ namespace edm {
class ConfigurationDescriptions;
}

class HLTRegionalEcalResonanceFilter : public edm::EDFilter {
class HLTRegionalEcalResonanceFilter : public edm::stream::EDFilter<>
{
public:
explicit HLTRegionalEcalResonanceFilter(const edm::ParameterSet&);
~HLTRegionalEcalResonanceFilter();
Expand Down
Expand Up @@ -10,7 +10,7 @@ Description: simple NxN ( 3x3 etc) clustering ,( for low energy photon reconstru
*/

#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/EDProducer.h"
#include "FWCore/Framework/interface/stream/EDProducer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
Expand Down Expand Up @@ -44,7 +44,7 @@ class ecalRecHitSort : public std::binary_function<EcalRecHit, EcalRecHit, bool>
};


class EgammaHLTNxNClusterProducer : public edm::EDProducer {
class EgammaHLTNxNClusterProducer : public edm::stream::EDProducer<> {
public:

EgammaHLTNxNClusterProducer(const edm::ParameterSet& ps);
Expand Down

0 comments on commit b5f9902

Please sign in to comment.