-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- decrease number of allocations - use more efficient framework APIs
- Loading branch information
Showing
15 changed files
with
193 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
EventFilter/L1TRawToDigi/plugins/implementations_stage2/GMTPutTokens.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
#ifndef Subsystem_Package_GMTPutTokens_h | ||
#define Subsystem_Package_GMTPutTokens_h | ||
// -*- C++ -*- | ||
// | ||
// Package: Subsystem/Package | ||
// Class : GMTPutTokens | ||
// | ||
/**\class GMTPutTokens GMTPutTokens.h "GMTPutTokens.h" | ||
Description: Holder for the EDPutTokens | ||
Usage: | ||
<usage> | ||
*/ | ||
// | ||
// Original Author: Christopher Jones | ||
// Created: Wed, 11 Dec 2024 13:41:10 GMT | ||
// | ||
#include "DataFormats/L1TMuon/interface/RegionalMuonCand.h" | ||
#include "DataFormats/L1Trigger/interface/Muon.h" | ||
|
||
#include "DataFormats/L1TMuon/interface/RegionalMuonShower.h" | ||
#include "DataFormats/L1Trigger/interface/MuonShower.h" | ||
|
||
#include "L1TObjectCollections.h" | ||
|
||
// system include files | ||
#include <vector> | ||
|
||
// user include files | ||
#include "FWCore/Utilities/interface/EDPutToken.h" | ||
|
||
// forward declarations | ||
|
||
namespace l1t { | ||
namespace stage2 { | ||
struct GMTPutTokens { | ||
edm::EDPutTokenT<RegionalMuonCandBxCollection> bmtf_; | ||
edm::EDPutTokenT<RegionalMuonCandBxCollection> omtf_; | ||
edm::EDPutTokenT<RegionalMuonCandBxCollection> emtf_; | ||
|
||
edm::EDPutTokenT<MuonBxCollection> muon_; | ||
std::vector<edm::EDPutTokenT<MuonBxCollection>> muonCopies_; | ||
|
||
edm::EDPutTokenT<MuonBxCollection> imdMuonsBMTF_; | ||
edm::EDPutTokenT<MuonBxCollection> imdMuonsEMTFNeg_; | ||
edm::EDPutTokenT<MuonBxCollection> imdMuonsEMTFPos_; | ||
edm::EDPutTokenT<MuonBxCollection> imdMuonsOMTFNeg_; | ||
edm::EDPutTokenT<MuonBxCollection> imdMuonsOMTFPos_; | ||
|
||
edm::EDPutTokenT<RegionalMuonShowerBxCollection> showerEMTF_; | ||
edm::EDPutTokenT<MuonShowerBxCollection> muonShower_; | ||
std::vector<edm::EDPutTokenT<MuonShowerBxCollection>> muonShowerCopy_; | ||
}; | ||
} // namespace stage2 | ||
} // namespace l1t | ||
#endif |
Oops, something went wrong.