Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:47

0001 #include "L1Trigger/DTTriggerPhase2/interface/MotherGrouping.h"
0002 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0003 
0004 using namespace edm;
0005 using namespace std;
0006 
0007 // ============================================================================
0008 // Constructors and destructor
0009 // ============================================================================
0010 MotherGrouping::MotherGrouping(const ParameterSet& pset, edm::ConsumesCollector& iC)
0011     : debug_(pset.getUntrackedParameter<bool>("debug")) {}
0012 
0013 MotherGrouping::~MotherGrouping() {}
0014 
0015 // ============================================================================
0016 // Main methods (initialise, run, finish)
0017 // ============================================================================
0018 void MotherGrouping::initialise(const edm::EventSetup& iEventSetup) {}
0019 
0020 void MotherGrouping::run(Event& iEvent,
0021                          const EventSetup& iEventSetup,
0022                          const DTDigiCollection& digis,
0023                          MuonPathPtrs& mpaths) {}
0024 
0025 void MotherGrouping::finish(){};