forked from cms-sw/cmssw
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaning Stage1 / Layer1 Producers / Processors / Algos structure and…
… config (cms-sw#104) * WIP: cleaning Stage1/Layer1 structure and config * fix compilation issue with layer 1 emulator algo * apply code-format * update documentation
- Loading branch information
Showing
42 changed files
with
337 additions
and
676 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
24 changes: 0 additions & 24 deletions
24
L1Trigger/L1THGCal/interface/backend/HGCalBackendLayer1Processor.h
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
L1Trigger/L1THGCal/interface/backend/HGCalBackendLayer1ProcessorTruncation.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,24 @@ | ||
#ifndef __L1Trigger_L1THGCal_HGCalBackendLayer1ProcessorTruncation_h__ | ||
#define __L1Trigger_L1THGCal_HGCalBackendLayer1ProcessorTruncation_h__ | ||
|
||
#include "L1Trigger/L1THGCal/interface/HGCalProcessorBase.h" | ||
|
||
#include "DataFormats/L1THGCal/interface/HGCalTriggerCell.h" | ||
#include "DataFormats/L1THGCal/interface/HGCalCluster.h" | ||
|
||
#include "L1Trigger/L1THGCal/interface/backend/HGCalLayer1TruncationImpl.h" | ||
#include "L1Trigger/L1THGCal/interface/backend/HGCalClusteringDummyImpl.h" | ||
|
||
class HGCalBackendLayer1ProcessorTruncation : public HGCalBackendLayer1ProcessorBase { | ||
public: | ||
HGCalBackendLayer1ProcessorTruncation(const edm::ParameterSet& conf); | ||
|
||
void run(const std::pair<uint32_t, std::vector<edm::Ptr<l1t::HGCalTriggerCell>>>& fpga_id_tcs, | ||
l1t::HGCalClusterBxCollection& clusters) override; | ||
|
||
private: | ||
std::unique_ptr<HGCalClusteringDummyImpl> clusteringDummy_; | ||
std::unique_ptr<HGCalLayer1TruncationImpl> truncation_; | ||
}; | ||
|
||
#endif |
26 changes: 26 additions & 0 deletions
26
L1Trigger/L1THGCal/interface/backend/HGCalBackendLayer1ProcessorTruncationFw.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,26 @@ | ||
#ifndef __L1Trigger_L1THGCal_HGCalBackendLayer1ProcessorTruncationFw_h__ | ||
#define __L1Trigger_L1THGCal_HGCalBackendLayer1ProcessorTruncationFw_h__ | ||
|
||
#include "L1Trigger/L1THGCal/interface/HGCalProcessorBase.h" | ||
#include "L1Trigger/L1THGCal/interface/HGCalAlgoWrapperBase.h" | ||
|
||
#include "DataFormats/L1THGCal/interface/HGCalTriggerCell.h" | ||
#include "DataFormats/L1THGCal/interface/HGCalCluster.h" | ||
|
||
#include "L1Trigger/L1THGCal/interface/backend_emulator/HGCalLayer1TruncationFwImpl.h" | ||
#include "L1Trigger/L1THGCal/interface/backend/HGCalClusteringDummyImpl.h" | ||
|
||
class HGCalBackendLayer1ProcessorTruncationFw : public HGCalBackendLayer1ProcessorBase { | ||
public: | ||
HGCalBackendLayer1ProcessorTruncationFw(const edm::ParameterSet& conf); | ||
|
||
void run(const std::pair<uint32_t, std::vector<edm::Ptr<l1t::HGCalTriggerCell>>>& fpga_id_tcs, | ||
l1t::HGCalClusterBxCollection& clusters) override; | ||
|
||
private: | ||
std::unique_ptr<HGCalClusteringDummyImpl> clusteringDummy_; | ||
std::unique_ptr<HGCalLayer1TruncationWrapperBase> truncationWrapper_; | ||
const edm::ParameterSet conf_; | ||
}; | ||
|
||
#endif |
25 changes: 0 additions & 25 deletions
25
L1Trigger/L1THGCal/interface/backend/HGCalBackendStage1Processor.h
This file was deleted.
Oops, something went wrong.
8 changes: 4 additions & 4 deletions
8
...rface/backend/HGCalStage1TruncationImpl.h → ...rface/backend/HGCalLayer1TruncationImpl.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
72 changes: 0 additions & 72 deletions
72
L1Trigger/L1THGCal/interface/backend/HGCalStage1TruncationConfig_SA.h
This file was deleted.
Oops, something went wrong.
43 changes: 0 additions & 43 deletions
43
L1Trigger/L1THGCal/interface/backend/HGCalStage1TruncationImpl_SA.h
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.