Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

2 changes: 1 addition & 1 deletion Configuration/StandardSequences/python/Eras.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def __init__(self):
'phase2_hgcal', 'phase2_timing', 'phase2_hfnose', 'phase2_hgcalV10', 'phase2_hgcalV11', 'phase2_hgcalV12',
'phase2_timing_layer', 'phase2_etlV4', 'phase2_hcal', 'phase2_ecal','phase2_ecal_devel',
'phase2_trigger',
'phase2_squarePixels', 'phase2_3DPixels', 'phase2_brickedPixels',
'phase2_squarePixels', 'phase2_3DPixels',
'trackingLowPU', 'trackingPhase1', 'ctpps', 'ctpps_2016', 'ctpps_2017', 'ctpps_2018', 'ctpps_2021', 'trackingPhase2PU140','highBetaStar_2018',
'tracker_apv_vfp30_2016', 'pf_badHcalMitigationOff', 'run2_miniAOD_80XLegacy','run2_miniAOD_94XFall17', 'run2_nanoAOD_92X',
'run2_nanoAOD_94XMiniAODv1', 'run2_nanoAOD_94XMiniAODv2', 'run2_nanoAOD_94X2016',
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
// Our own stuff
#include "SiPixelClusterProducer.h"
#include "PixelThresholdClusterizer.h"
#include "PixelThresholdClusterizerForBricked.h"

// Geometry
#include "Geometry/CommonDetUnit/interface/PixelGeomDetUnit.h"
Expand Down Expand Up @@ -143,9 +142,6 @@ void SiPixelClusterProducer::setupClusterizer(const edm::ParameterSet& conf) {
if (clusterMode_ == "PixelThresholdReclusterizer" || clusterMode_ == "PixelThresholdClusterizer") {
clusterizer_ = std::make_unique<PixelThresholdClusterizer>(conf);
clusterizer_->setSiPixelGainCalibrationService(theSiPixelGainCalibration_.get());
} else if (clusterMode_ == "PixelThresholdClusterizerForBricked") {
clusterizer_ = std::make_unique<PixelThresholdClusterizerForBricked>(conf);
clusterizer_->setSiPixelGainCalibrationService(theSiPixelGainCalibration_.get());
} else {
throw cms::Exception("Configuration") << "[SiPixelClusterProducer]:"
<< " choice " << clusterMode_ << " is invalid.\n"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,6 @@
ClusterThreshold_L1 = 4000
)

# customize phase2 clusters for bricked pixels
from Configuration.Eras.Modifier_phase2_brickedPixels_cff import phase2_brickedPixels
phase2_brickedPixels.toModify(siPixelClusters,
ClusterMode = cms.string('PixelThresholdClusterizerForBricked')
)

# Need these until phase2 pixel templates are used
from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker
from SimTracker.SiPhase2Digitizer.phase2TrackerDigitizer_cfi import PixelDigitizerAlgorithmCommon
Expand Down
Loading