Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:08

0001 // -*- C++ -*-
0002 //
0003 // Package:     Subsystem/Package
0004 // Class  :     StuckAnalyzer
0005 //
0006 // Implementation:
0007 //     [Notes on implementation]
0008 //
0009 // Original Author:  Chris Jones
0010 //         Created:  Sat, 22 Mar 2014 23:07:05 GMT
0011 //
0012 
0013 // system include files
0014 
0015 // user include files
0016 #include "FWCore/Framework/interface/global/EDAnalyzer.h"
0017 #include "FWCore/Framework/interface/MakerMacros.h"
0018 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0019 
0020 class StuckAnalyzer : public edm::global::EDAnalyzer<> {
0021 public:
0022   StuckAnalyzer(edm::ParameterSet const&) {}
0023 
0024   void analyze(edm::StreamID, edm::Event const&, edm::EventSetup const&) const override {
0025     while (true) {
0026     };
0027   }
0028 };
0029 
0030 DEFINE_FWK_MODULE(StuckAnalyzer);