Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moved modules in L1Trigger/TextToDigi to be thread friendly #39637

Merged
merged 1 commit into from Oct 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions L1Trigger/TextToDigi/plugins/GctDigiToPsbText.h
Expand Up @@ -12,7 +12,7 @@
#include <iostream>
#include <memory>
// user include files
#include "FWCore/Framework/interface/EDAnalyzer.h"
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/MakerMacros.h"
Expand All @@ -21,7 +21,7 @@
// gct
#include "DataFormats/L1GlobalCaloTrigger/interface/L1GctCollections.h"

class GctDigiToPsbText : public edm::EDAnalyzer {
class GctDigiToPsbText : public edm::one::EDAnalyzer<> {
public:
explicit GctDigiToPsbText(const edm::ParameterSet &);
~GctDigiToPsbText() override;
Expand Down
4 changes: 2 additions & 2 deletions L1Trigger/TextToDigi/plugins/GtPsbTextToDigi.h
Expand Up @@ -23,15 +23,15 @@
as specified to me by I.Mikulec, M.Jeitler, J.Brooke
*/

#include "FWCore/Framework/interface/EDProducer.h"
#include "FWCore/Framework/interface/one/EDProducer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include <fstream>
#include <memory>

class GtPsbTextToDigi : public edm::EDProducer {
class GtPsbTextToDigi : public edm::one::EDProducer<> {
public:
explicit GtPsbTextToDigi(const edm::ParameterSet &);
~GtPsbTextToDigi() override;
Expand Down
4 changes: 2 additions & 2 deletions L1Trigger/TextToDigi/plugins/RctDigiToSourceCardText.h
Expand Up @@ -25,7 +25,7 @@
#include <memory>

// user include files
#include "FWCore/Framework/interface/EDAnalyzer.h"
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"

#include "FWCore/Framework/interface/Event.h"
Expand All @@ -41,7 +41,7 @@
#include <fstream>
#include <iostream>

class RctDigiToSourceCardText : public edm::EDAnalyzer {
class RctDigiToSourceCardText : public edm::one::EDAnalyzer<> {
public:
explicit RctDigiToSourceCardText(const edm::ParameterSet &);
~RctDigiToSourceCardText() override;
Expand Down
4 changes: 2 additions & 2 deletions L1Trigger/TextToDigi/plugins/RctTextToRctDigi.h
Expand Up @@ -22,7 +22,7 @@
#include <memory>

// user include files
#include "FWCore/Framework/interface/EDProducer.h"
#include "FWCore/Framework/interface/one/EDProducer.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"

#include "FWCore/Framework/interface/Event.h"
Expand All @@ -36,7 +36,7 @@
#include <fstream>
#include <iostream>

class RctTextToRctDigi : public edm::EDProducer {
class RctTextToRctDigi : public edm::one::EDProducer<> {
public:
explicit RctTextToRctDigi(const edm::ParameterSet &);
~RctTextToRctDigi() override;
Expand Down
4 changes: 2 additions & 2 deletions L1Trigger/TextToDigi/plugins/SourceCardTextToRctDigi.h
Expand Up @@ -25,7 +25,7 @@
#include <memory>

// user include files
#include "FWCore/Framework/interface/EDProducer.h"
#include "FWCore/Framework/interface/one/EDProducer.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"

#include "FWCore/Framework/interface/Event.h"
Expand All @@ -41,7 +41,7 @@
#include <fstream>
#include <iostream>

class SourceCardTextToRctDigi : public edm::EDProducer {
class SourceCardTextToRctDigi : public edm::one::EDProducer<> {
public:
explicit SourceCardTextToRctDigi(const edm::ParameterSet &);
~SourceCardTextToRctDigi() override;
Expand Down