-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
1,750 additions
and
54 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
Configuration/ProcessModifiers/python/heterogeneousCLUE_cff.py
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,5 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# This modifier runs the heterogeneous version of CLUE on the EE part of HGCAL | ||
# in the HLT Phase2 Simplified menu. All seeded HLT Paths will keep on using the regular CPU version. | ||
heterogeneousCLUE = cms.Modifier() |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#ifndef DataFormats_HGCalReco_interface_HGCalSoACells_h | ||
#define DataFormats_HGCalReco_interface_HGCalSoACells_h | ||
|
||
#include <Eigen/Core> | ||
#include <Eigen/Dense> | ||
|
||
#include "DataFormats/SoATemplate/interface/SoACommon.h" | ||
#include "DataFormats/SoATemplate/interface/SoALayout.h" | ||
#include "DataFormats/SoATemplate/interface/SoAView.h" | ||
|
||
// SoA layout with dim1, dim2, weight, sigmaNoise, recHitsIndex layer and cellsCount fields | ||
GENERATE_SOA_LAYOUT(HGCalSoACellsLayout, | ||
// columns: one value per element | ||
SOA_COLUMN(float, dim1), | ||
SOA_COLUMN(float, dim2), | ||
SOA_COLUMN(float, dim3), | ||
SOA_COLUMN(int, layer), | ||
SOA_COLUMN(float, weight), | ||
SOA_COLUMN(float, sigmaNoise), | ||
SOA_COLUMN(unsigned int, recHitIndex), | ||
SOA_COLUMN(uint32_t, detid), | ||
SOA_COLUMN(float, time), | ||
SOA_COLUMN(float, timeError)) | ||
|
||
using HGCalSoACells = HGCalSoACellsLayout<>; | ||
|
||
#endif // DataFormats_PortableTestObjects_interface_TestSoA_h |
10 changes: 10 additions & 0 deletions
10
DataFormats/HGCalReco/interface/HGCalSoACellsHostCollection.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,10 @@ | ||
#ifndef DataFormats_HGCalReco_interface_HGCalSoACellsHostCollection_h | ||
#define DataFormats_HGCalReco_interface_HGCalSoACellsHostCollection_h | ||
|
||
#include "DataFormats/Portable/interface/PortableHostCollection.h" | ||
#include "DataFormats/HGCalReco/interface/HGCalSoACells.h" | ||
|
||
// SoA with x, y, z, id fields in host memory | ||
using HGCalSoACellsHostCollection = PortableHostCollection<HGCalSoACells>; | ||
|
||
#endif // DataFormats_HGCalReco_interface_HGCalSoACellsHostCollection_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,20 @@ | ||
#ifndef DataFormats_HGCalReco_interface_HGCalSoACellsOut_h | ||
#define DataFormats_HGCalReco_interface_HGCalSoACellsOut_h | ||
|
||
#include "DataFormats/SoATemplate/interface/SoACommon.h" | ||
#include "DataFormats/SoATemplate/interface/SoALayout.h" | ||
#include "DataFormats/SoATemplate/interface/SoAView.h" | ||
|
||
// SoA layout with delta, rho, weight, nearestHigher, clusterIndex, layer, isSeed, and cellsCount fields | ||
GENERATE_SOA_LAYOUT(HGCalSoACellsOutLayout, | ||
// columns: one value per element | ||
SOA_COLUMN(float, delta), | ||
SOA_COLUMN(float, rho), | ||
SOA_COLUMN(unsigned int, nearestHigher), | ||
SOA_COLUMN(int, clusterIndex), | ||
SOA_COLUMN(uint8_t, isSeed), | ||
SOA_SCALAR(unsigned int, numberOfClustersScalar)) | ||
|
||
using HGCalSoACellsOut = HGCalSoACellsOutLayout<>; | ||
|
||
#endif |
10 changes: 10 additions & 0 deletions
10
DataFormats/HGCalReco/interface/HGCalSoACellsOutHostCollection.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,10 @@ | ||
#ifndef DataFormats_HGCalReco_interface_HGCalSoACellsOutHostCollection_h | ||
#define DataFormats_HGCalReco_interface_HGCalSoACellsOutHostCollection_h | ||
|
||
#include "DataFormats/Portable/interface/PortableHostCollection.h" | ||
#include "DataFormats/HGCalReco/interface/HGCalSoACellsOut.h" | ||
|
||
// SoA with delta, rho, weight, nearestHigher, clusterIndex, layer, isSeed, and cellsCount fields in host memory | ||
using HGCalSoACellsOutHostCollection = PortableHostCollection<HGCalSoACellsOut>; | ||
|
||
#endif // DataFormats_HGCalReco_interface_HGCalSoACellsOutHostCollection_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,20 @@ | ||
#ifndef DataFormats_HGCalReco_interface_HGCalSoAClusters_h | ||
#define DataFormats_HGCalReco_interface_HGCalSoAClusters_h | ||
|
||
#include "DataFormats/SoATemplate/interface/SoACommon.h" | ||
#include "DataFormats/SoATemplate/interface/SoALayout.h" | ||
#include "DataFormats/SoATemplate/interface/SoAView.h" | ||
|
||
GENERATE_SOA_LAYOUT(HGCalSoAClustersLayout, | ||
// columns: one value per element | ||
SOA_COLUMN(float, x), | ||
SOA_COLUMN(float, y), | ||
SOA_COLUMN(float, z), | ||
SOA_COLUMN(float, energy), | ||
SOA_COLUMN(int, cells), // number of hits in the cluster | ||
SOA_COLUMN(int, seed) // This is the index of the seed of each cluster inside the RecHit SoA | ||
) | ||
|
||
using HGCalSoAClusters = HGCalSoAClustersLayout<>; | ||
|
||
#endif |
9 changes: 9 additions & 0 deletions
9
DataFormats/HGCalReco/interface/HGCalSoAClustersHostCollection.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,9 @@ | ||
#ifndef DataFormats_HGCalReco_interface_HGCalSoAClustersHostCollection_h | ||
#define DataFormats_HGCalReco_interface_HGCalSoAClustersHostCollection_h | ||
|
||
#include "DataFormats/Portable/interface/PortableHostCollection.h" | ||
#include "DataFormats/HGCalReco/interface/HGCalSoAClusters.h" | ||
|
||
using HGCalSoAClustersHostCollection = PortableHostCollection<HGCalSoAClusters>; | ||
|
||
#endif // DataFormats_HGCalReco_interface_HGCalSoAClustersHostCollection_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,19 @@ | ||
#ifndef DataFormats_HGCalReco_interface_HGCalSoAClustersService_h | ||
#define DataFormats_HGCalReco_interface_HGCalSoAClustersService_h | ||
|
||
#include "DataFormats/SoATemplate/interface/SoACommon.h" | ||
#include "DataFormats/SoATemplate/interface/SoALayout.h" | ||
#include "DataFormats/SoATemplate/interface/SoAView.h" | ||
|
||
GENERATE_SOA_LAYOUT( | ||
HGCalSoAClustersServiceLayout, | ||
// columns: one value per element | ||
SOA_COLUMN(float, total_weight), | ||
SOA_COLUMN(float, total_weight_log), | ||
SOA_COLUMN(float, maxEnergyValue), | ||
SOA_COLUMN(int, maxEnergyIndex) // Index in the RecHitSoA of the rechit with highest energy in each cluster | ||
) | ||
|
||
using HGCalSoAClustersService = HGCalSoAClustersServiceLayout<>; | ||
|
||
#endif |
9 changes: 9 additions & 0 deletions
9
DataFormats/HGCalReco/interface/HGCalSoAClustersServiceHostCollection.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,9 @@ | ||
#ifndef DataFormats_HGCalReco_interface_HGCalSoAClustersServiceHostCollection_h | ||
#define DataFormats_HGCalReco_interface_HGCalSoAClustersServiceHostCollection_h | ||
|
||
#include "DataFormats/Portable/interface/PortableHostCollection.h" | ||
#include "DataFormats/HGCalReco/interface/HGCalSoAClustersService.h" | ||
|
||
using HGCalSoAClustersServiceHostCollection = PortableHostCollection<HGCalSoAClustersService>; | ||
|
||
#endif // DataFormats_HGCalReco_interface_HGCalSoAClustersServiceHostCollection_h |
15 changes: 15 additions & 0 deletions
15
DataFormats/HGCalReco/interface/alpaka/HGCalSoACellsDeviceCollection.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,15 @@ | ||
#ifndef DataFormats_PortableTestObjects_interface_alpaka_HGCalSoACellsDeviceCollection_h | ||
#define DataFormats_PortableTestObjects_interface_alpaka_HGCalSoACellsDeviceCollection_h | ||
|
||
#include "DataFormats/Portable/interface/alpaka/PortableCollection.h" | ||
#include "DataFormats/HGCalReco/interface/HGCalSoACells.h" | ||
#include "HeterogeneousCore/AlpakaInterface/interface/config.h" | ||
|
||
namespace ALPAKA_ACCELERATOR_NAMESPACE { | ||
|
||
// SoA with x, y, z, id fields in device global memory | ||
using HGCalSoACellsDeviceCollection = PortableCollection<HGCalSoACells>; | ||
|
||
} // namespace ALPAKA_ACCELERATOR_NAMESPACE | ||
|
||
#endif // DataFormats_PortableTestObjects_interface_alpaka_HGCalSoACellsDeviceCollection_h |
15 changes: 15 additions & 0 deletions
15
DataFormats/HGCalReco/interface/alpaka/HGCalSoACellsOutDeviceCollection.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,15 @@ | ||
#ifndef DataFormats_PortableTestObjects_interface_alpaka_HGCalSoACellsOutDeviceCollection_h | ||
#define DataFormats_PortableTestObjects_interface_alpaka_HGCalSoACellsOutDeviceCollection_h | ||
|
||
#include "DataFormats/Portable/interface/alpaka/PortableCollection.h" | ||
#include "DataFormats/HGCalReco/interface/HGCalSoACellsOut.h" | ||
#include "HeterogeneousCore/AlpakaInterface/interface/config.h" | ||
|
||
namespace ALPAKA_ACCELERATOR_NAMESPACE { | ||
|
||
// SoA with delta, rho, weight, nearestHigher, clusterIndex, layer, isSeed, and cellsCount fields in device global memory | ||
using HGCalSoACellsOutDeviceCollection = PortableCollection<HGCalSoACellsOut>; | ||
|
||
} // namespace ALPAKA_ACCELERATOR_NAMESPACE | ||
|
||
#endif // DataFormats_PortableTestObjects_interface_alpaka_HGCalSoACellsOutDeviceCollection_h |
14 changes: 14 additions & 0 deletions
14
DataFormats/HGCalReco/interface/alpaka/HGCalSoAClustersDeviceCollection.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,14 @@ | ||
#ifndef DataFormats_PortableTestObjects_interface_alpaka_HGCalSoAClustersDeviceCollection_h | ||
#define DataFormats_PortableTestObjects_interface_alpaka_HGCalSoAClustersDeviceCollection_h | ||
|
||
#include "DataFormats/Portable/interface/alpaka/PortableCollection.h" | ||
#include "DataFormats/HGCalReco/interface/HGCalSoAClusters.h" | ||
#include "HeterogeneousCore/AlpakaInterface/interface/config.h" | ||
|
||
namespace ALPAKA_ACCELERATOR_NAMESPACE { | ||
|
||
using HGCalSoAClustersDeviceCollection = PortableCollection<HGCalSoAClusters>; | ||
|
||
} // namespace ALPAKA_ACCELERATOR_NAMESPACE | ||
|
||
#endif // DataFormats_PortableTestObjects_interface_alpaka_HGCalSoAClustersDeviceCollection_h |
14 changes: 14 additions & 0 deletions
14
DataFormats/HGCalReco/interface/alpaka/HGCalSoAClustersServiceDeviceCollection.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,14 @@ | ||
#ifndef DataFormats_PortableTestObjects_interface_alpaka_HGCalSoAClustersServiceDeviceCollection_h | ||
#define DataFormats_PortableTestObjects_interface_alpaka_HGCalSoAClustersServiceDeviceCollection_h | ||
|
||
#include "DataFormats/Portable/interface/alpaka/PortableCollection.h" | ||
#include "DataFormats/HGCalReco/interface/HGCalSoAClustersService.h" | ||
#include "HeterogeneousCore/AlpakaInterface/interface/config.h" | ||
|
||
namespace ALPAKA_ACCELERATOR_NAMESPACE { | ||
|
||
using HGCalSoAClustersServiceDeviceCollection = PortableCollection<HGCalSoAClustersService>; | ||
|
||
} // namespace ALPAKA_ACCELERATOR_NAMESPACE | ||
|
||
#endif // DataFormats_PortableTestObjects_interface_alpaka_HGCalSoAClustersServiceDeviceCollection_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,7 @@ | ||
#include "DataFormats/Common/interface/DeviceProduct.h" | ||
#include "DataFormats/Common/interface/Wrapper.h" | ||
#include "DataFormats/HGCalReco/interface/HGCalSoACells.h" | ||
#include "DataFormats/HGCalReco/interface/HGCalSoACellsOut.h" | ||
#include "DataFormats/HGCalReco/interface/alpaka/HGCalSoACellsDeviceCollection.h" | ||
#include "DataFormats/HGCalReco/interface/alpaka/HGCalSoACellsOutDeviceCollection.h" | ||
#include "DataFormats/HGCalReco/interface/alpaka/HGCalSoAClustersDeviceCollection.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,13 @@ | ||
<lcgdict> | ||
<class name="alpaka_cuda_async::HGCalSoACellsDeviceCollection" persistent="false"/> | ||
<class name="edm::DeviceProduct<alpaka_cuda_async::HGCalSoACellsDeviceCollection>" persistent="false"/> | ||
<class name="edm::Wrapper<edm::DeviceProduct<alpaka_cuda_async::HGCalSoACellsDeviceCollection>>" persistent="false"/> | ||
|
||
<class name="alpaka_cuda_async::HGCalSoACellsOutDeviceCollection" persistent="false"/> | ||
<class name="edm::DeviceProduct<alpaka_cuda_async::HGCalSoACellsOutDeviceCollection>" persistent="false"/> | ||
<class name="edm::Wrapper<edm::DeviceProduct<alpaka_cuda_async::HGCalSoACellsOutDeviceCollection>>" persistent="false"/> | ||
|
||
<class name="alpaka_cuda_async::HGCalSoAClustersDeviceCollection" persistent="false"/> | ||
<class name="edm::DeviceProduct<alpaka_cuda_async::HGCalSoAClustersDeviceCollection>" persistent="false"/> | ||
<class name="edm::Wrapper<edm::DeviceProduct<alpaka_cuda_async::HGCalSoAClustersDeviceCollection>>" persistent="false"/> | ||
</lcgdict> |
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,7 @@ | ||
#include "DataFormats/Common/interface/DeviceProduct.h" | ||
#include "DataFormats/Common/interface/Wrapper.h" | ||
#include "DataFormats/HGCalReco/interface/HGCalSoACells.h" | ||
#include "DataFormats/HGCalReco/interface/HGCalSoACellsOut.h" | ||
#include "DataFormats/HGCalReco/interface/alpaka/HGCalSoACellsDeviceCollection.h" | ||
#include "DataFormats/HGCalReco/interface/alpaka/HGCalSoACellsOutDeviceCollection.h" | ||
#include "DataFormats/HGCalReco/interface/alpaka/HGCalSoAClustersDeviceCollection.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,13 @@ | ||
<lcgdict> | ||
<class name="alpaka_rocm_async::HGCalSoACellsDeviceCollection" persistent="false"/> | ||
<class name="edm::DeviceProduct<alpaka_rocm_async::HGCalSoACellsDeviceCollection>" persistent="false"/> | ||
<class name="edm::Wrapper<edm::DeviceProduct<alpaka_rocm_async::HGCalSoACellsDeviceCollection>>" persistent="false"/> | ||
|
||
<class name="alpaka_rocm_async::HGCalSoACellsOutDeviceCollection" persistent="false"/> | ||
<class name="edm::DeviceProduct<alpaka_rocm_async::HGCalSoACellsOutDeviceCollection>" persistent="false"/> | ||
<class name="edm::Wrapper<edm::DeviceProduct<alpaka_rocm_async::HGCalSoACellsOutDeviceCollection>>" persistent="false"/> | ||
|
||
<class name="alpaka_rocm_async::HGCalSoAClustersDeviceCollection" persistent="false"/> | ||
<class name="edm::DeviceProduct<alpaka_rocm_async::HGCalSoAClustersDeviceCollection>" persistent="false"/> | ||
<class name="edm::Wrapper<edm::DeviceProduct<alpaka_rocm_async::HGCalSoAClustersDeviceCollection>>" persistent="false"/> | ||
</lcgdict> |
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
14 changes: 14 additions & 0 deletions
14
HLTrigger/Configuration/python/HLT_75e33/modules/hgcalLayerClustersFromSoAProducer_cfi.py
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,14 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
from ..psets.hgcal_reco_constants_cfi import HGCAL_reco_constants as HGCAL_reco_constants | ||
|
||
hgCalLayerClustersFromSoAProducer = cms.EDProducer("HGCalLayerClustersFromSoAProducer", | ||
detector = cms.string('EE'), | ||
hgcalRecHitsLayerClustersSoA = cms.InputTag("hgCalSoARecHitsLayerClustersProducer"), | ||
hgcalRecHitsSoA = cms.InputTag("hgCalSoARecHitsProducer"), | ||
mightGet = cms.optional.untracked.vstring, | ||
nHitsTime = cms.uint32(3), | ||
srcDevice = cms.InputTag("hgCalSoALayerClustersProducer"), | ||
timeClname = cms.string('timeLayerCluster') | ||
) | ||
|
||
|
13 changes: 13 additions & 0 deletions
13
HLTrigger/Configuration/python/HLT_75e33/modules/hgcalSoALayerClustersProducer_cfi.py
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,13 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
from ..psets.hgcal_reco_constants_cfi import HGCAL_reco_constants as HGCAL_reco_constants | ||
|
||
hgCalSoALayerClustersProducer = cms.EDProducer("HGCalSoALayerClustersProducer@alpaka", | ||
alpaka = cms.untracked.PSet( | ||
backend = cms.untracked.string('cuda_async') | ||
), | ||
hgcalRecHitsLayerClustersSoA = cms.InputTag("hgCalSoARecHitsLayerClustersProducer"), | ||
hgcalRecHitsSoA = cms.InputTag("hgCalSoARecHitsProducer"), | ||
mightGet = cms.optional.untracked.vstring, | ||
positionDeltaRho2 = cms.double(1.69), | ||
thresholdW0 = cms.double(2.9) | ||
) |
10 changes: 10 additions & 0 deletions
10
HLTrigger/Configuration/python/HLT_75e33/modules/hgcalSoARecHitsLayerClustersProducer_cfi.py
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,10 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
from ..psets.hgcal_reco_constants_cfi import HGCAL_reco_constants as HGCAL_reco_constants | ||
|
||
hgCalSoARecHitsLayerClustersProducer = cms.EDProducer("HGCalSoARecHitsLayerClustersProducer@alpaka", | ||
alpaka = cms.untracked.PSet( | ||
backend = cms.untracked.string('cuda_async') | ||
), | ||
hgcalRecHitsSoA = cms.InputTag("hgCalSoARecHitsProducer"), | ||
mightGet = cms.optional.untracked.vstring | ||
) |
Oops, something went wrong.