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
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,25 @@ struct SiPixelLorentzAngleCalibrationHistograms {
// ouput LA maps
std::vector<dqm::reco::MonitorElement*> h2_byLayerLA_;
std::vector<dqm::reco::MonitorElement*> h2_byLayerDiff_;

// FPix Minimal Cluster Size
static constexpr int nRings_ = 2;
static constexpr int nPanels_ = 2;
static constexpr int nSides_ = 2;
static constexpr int betaStartIdx_ = nRings_ * nPanels_ * nSides_;
static constexpr int nAngles_ = 2;

MonitorMap h_fpixAngleSize_;
MonitorMap h_fpixMean_;
MonitorMap h_fpixMagField_[3];

dqm::reco::MonitorElement* h_fpixMeanHistoFitStatus_;
dqm::reco::MonitorElement* h_fpixMinClusterSizeCotAngle_;
dqm::reco::MonitorElement* h_fpixNhitsClusterSizeCotAngle_;
dqm::reco::MonitorElement* h_fpixFitStatusMuH_;
dqm::reco::MonitorElement* h_fpixMuH_;
dqm::reco::MonitorElement* h_fpixDeltaMuH_;
dqm::reco::MonitorElement* h_fpixRelDeltaMuH_;
};

#endif
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import FWCore.ParameterSet.Config as cms
from CalibTracker.SiPixelLorentzAngle.SiPixelLorentzAnglePCLWorker_cfi import SiPixelLorentzAnglePCLWorker as worker
from CalibTracker.SiPixelLorentzAngle.siPixelLorentzAnglePCLHarvesterMCS_cfi import siPixelLorentzAnglePCLHarvesterMCS as _defaultHarvester

SiPixelLorentzAnglePCLHarvesterMCS = _defaultHarvester.clone(
newmodulelist = worker.newmodulelist.value(), # taken from worker configuration, need to stay in synch
dqmDir = worker.folder.value(), # taken from worker configuration, need to stay in synch
)
Loading