From c9ced9005435af28f4daaa9caf352657407caf2b Mon Sep 17 00:00:00 2001 From: "W. David Dagenhart" Date: Wed, 31 Jan 2024 22:09:55 +0100 Subject: [PATCH] Delete last L1 legacy type module --- .../interface/L1AnalysisBMTFInputs.h | 6 - .../RPCTriggerConfig/test/TestBxOrConfig.cc | 111 ------------------ .../RPCTriggerConfig/test/bxOrConfigTest.py | 24 ---- 3 files changed, 141 deletions(-) delete mode 100644 L1TriggerConfig/RPCTriggerConfig/test/TestBxOrConfig.cc delete mode 100644 L1TriggerConfig/RPCTriggerConfig/test/bxOrConfigTest.py diff --git a/L1Trigger/L1TNtuples/interface/L1AnalysisBMTFInputs.h b/L1Trigger/L1TNtuples/interface/L1AnalysisBMTFInputs.h index 9c3017cfcb1e2..0559cb217d4e8 100644 --- a/L1Trigger/L1TNtuples/interface/L1AnalysisBMTFInputs.h +++ b/L1Trigger/L1TNtuples/interface/L1AnalysisBMTFInputs.h @@ -9,12 +9,6 @@ #include "L1AnalysisBMTFInputsDataFormat.h" -//#include "FWCore/Framework/interface/Frameworkfwd.h" -//#include "FWCore/Framework/interface/EDAnalyzer.h" -//#include "FWCore/Framework/interface/Event.h" -//#include "FWCore/Framework/interface/MakerMacros.h" -//#include "FWCore/ParameterSet/interface/ParameterSet.h" - namespace L1Analysis { class L1AnalysisBMTFInputs { public: diff --git a/L1TriggerConfig/RPCTriggerConfig/test/TestBxOrConfig.cc b/L1TriggerConfig/RPCTriggerConfig/test/TestBxOrConfig.cc deleted file mode 100644 index 83634951b6ef2..0000000000000 --- a/L1TriggerConfig/RPCTriggerConfig/test/TestBxOrConfig.cc +++ /dev/null @@ -1,111 +0,0 @@ -// -*- C++ -*- -// -// Package: TestBxOrConfig -// Class: TestBxOrConfig -// -/**\class TestBxOrConfig TestBxOrConfig.cc L1TriggerConfig/TestBxOrConfig/src/TestBxOrConfig.cc - - Description: - - Implementation: - -*/ - -// system include files -#include - -// user include files -#include "FWCore/Framework/interface/Frameworkfwd.h" -#include "FWCore/Framework/interface/EDAnalyzer.h" - -#include "FWCore/Framework/interface/Event.h" -#include "FWCore/Framework/interface/MakerMacros.h" - -#include "FWCore/ParameterSet/interface/ParameterSet.h" - -#include "FWCore/Framework/interface/EventSetup.h" -#include "FWCore/Framework/interface/ESHandle.h" - - - -#include "CondFormats/DataRecord/interface/L1RPCBxOrConfigRcd.h" -#include "CondFormats/L1TObjects/interface/L1RPCBxOrConfig.h" - -// -// class decleration -// - -class TestBxOrConfig : public edm::EDAnalyzer { - public: - explicit TestBxOrConfig(const edm::ParameterSet&); - ~TestBxOrConfig(); - - - private: - virtual void beginJob() ; - virtual void analyze(const edm::Event&, const edm::EventSetup&); - virtual void endJob() ; - - // ----------member data --------------------------- -}; - -// -// constants, enums and typedefs -// - -// -// static data member definitions -// - -// -// constructors and destructor -// -TestBxOrConfig::TestBxOrConfig(const edm::ParameterSet& iConfig) - -{ - //now do what ever initialization is needed - -} - - -TestBxOrConfig::~TestBxOrConfig() -{ - - // do anything here that needs to be done at desctruction time - // (e.g. close files, deallocate resources etc.) - -} - - -// -// member functions -// - -// ------------ method called to for each event ------------ -void -TestBxOrConfig::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) -{ - using namespace edm; - edm::ESHandle bxOrConfig; - iSetup.get().get(bxOrConfig); - - std::cout << "Checking BX Or settings" << std::endl; - - std::cout<< "First BX : "<getFirstBX()<<", Last BX : "<getLastBX()<