Skip to content

Commit

Permalink
Merge pull request #10955 from fwyzard/migrate_to_multithreading_75x_HLT
Browse files Browse the repository at this point in the history
migrate to modules used by the HLT menu multithreading (HLT)
  • Loading branch information
davidlange6 committed Aug 27, 2015
2 parents b700075 + 4efde96 commit 7d64114
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 7d64114

Please sign in to comment.