CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions | Variables
HistogramManager_cfi Namespace Reference

Functions

def VPSet
 

Variables

tuple DefaultHisto
 
tuple DefaultHistoDigiCluster = DefaultHisto.clone()
 
tuple DefaultHistoReadout = DefaultHisto.clone()
 
tuple DefaultHistoSummary = DefaultHisto.clone()
 
tuple DefaultHistoTrack = DefaultHisto.clone()
 
tuple PerLadder = cms.PSet(enabled = cms.bool(True))
 
tuple PerLayer1D = cms.PSet(enabled = cms.bool(True))
 
tuple PerLayer2D = cms.PSet(enabled = cms.bool(True))
 
tuple PerModule = cms.PSet(enabled = cms.bool(True))
 
tuple PerReadout = cms.PSet(enabled = cms.bool(True))
 
tuple SiPixelPhase1Geometry
 
list StandardSpecification2DProfile
 
list StandardSpecification2DProfile_Num
 
list StandardSpecificationInclusive_Num
 
list StandardSpecificationOccupancy
 
list StandardSpecificationPixelmapProfile
 
list StandardSpecifications1D
 
list StandardSpecifications1D_Num
 
list StandardSpecificationTrend
 
list StandardSpecificationTrend2D
 
list StandardSpecificationTrend_Num
 

Function Documentation

def HistogramManager_cfi.VPSet (   args)

Definition at line 313 of file HistogramManager_cfi.py.

References list().

Referenced by CandIsolatorFromDeposits.CandIsolatorFromDeposits(), CombinedSeedComparitor.CombinedSeedComparitor(), DQMGenericClient.DQMGenericClient(), DQMRivetClient.DQMRivetClient(), HLTLogMonitorFilter.HLTLogMonitorFilter(), HLTTauDQMOfflineSource.HLTTauDQMOfflineSource(), MagFieldConfig.MagFieldConfig(), edm.parameterTypeEnumToString(), PATTauDiscriminantCutMultiplexer.PATTauDiscriminantCutMultiplexer(), PFCandIsolatorFromDeposits.PFCandIsolatorFromDeposits(), PFRecoTauDiscriminationByHPSSelection.PFRecoTauDiscriminationByHPSSelection(), PFTauMVAInputDiscriminantTranslator.PFTauMVAInputDiscriminantTranslator(), reco::tau::RecoTauBuilderCombinatoricPlugin.RecoTauBuilderCombinatoricPlugin(), RecoTauCleanerImpl< Prod >.RecoTauCleanerImpl(), RecoTauDecayModeCutMultiplexer.RecoTauDecayModeCutMultiplexer(), RecoTauDiscriminantCutMultiplexer.RecoTauDiscriminantCutMultiplexer(), reco::tau::RecoTauDiscriminantInvariantWidth.RecoTauDiscriminantInvariantWidth(), reco::tau::RecoTauDiscriminationBinnedIsolation.RecoTauDiscriminationBinnedIsolation(), RecoTauMVATransform.RecoTauMVATransform(), RecoTauPiZeroProducer.RecoTauPiZeroProducer(), RecoTauProducer.RecoTauProducer(), and TrackMultiSelector.TrackMultiSelector().

314 def VPSet(*args):
315  l = []
316  for a in args:
317  if isinstance(a, cms.VPSet) or isinstance(a, Specification):
318  e = [a]
319  else:
320  e = list(a)
321  l = l+e
322  return cms.VPSet(l)
323 
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run

Variable Documentation

tuple HistogramManager_cfi.DefaultHisto

Definition at line 43 of file HistogramManager_cfi.py.

tuple HistogramManager_cfi.DefaultHistoDigiCluster = DefaultHisto.clone()

Definition at line 95 of file HistogramManager_cfi.py.

tuple HistogramManager_cfi.DefaultHistoReadout = DefaultHisto.clone()

Definition at line 104 of file HistogramManager_cfi.py.

tuple HistogramManager_cfi.DefaultHistoSummary = DefaultHisto.clone()

Definition at line 98 of file HistogramManager_cfi.py.

tuple HistogramManager_cfi.DefaultHistoTrack = DefaultHisto.clone()

Definition at line 101 of file HistogramManager_cfi.py.

tuple HistogramManager_cfi.PerLadder = cms.PSet(enabled = cms.bool(True))

Definition at line 36 of file HistogramManager_cfi.py.

tuple HistogramManager_cfi.PerLayer1D = cms.PSet(enabled = cms.bool(True))

Definition at line 38 of file HistogramManager_cfi.py.

tuple HistogramManager_cfi.PerLayer2D = cms.PSet(enabled = cms.bool(True))

Definition at line 37 of file HistogramManager_cfi.py.

tuple HistogramManager_cfi.PerModule = cms.PSet(enabled = cms.bool(True))

Definition at line 35 of file HistogramManager_cfi.py.

tuple HistogramManager_cfi.PerReadout = cms.PSet(enabled = cms.bool(True))

Definition at line 39 of file HistogramManager_cfi.py.

tuple HistogramManager_cfi.SiPixelPhase1Geometry
Initial value:
1 = cms.PSet(
2  # SPixel*Name and friends use the isUpgrade flag, so we also have it as a setting here.
3  upgradePhase = cms.int32(1),
4 
5  # module geometry. The phase1 detector has only one sort, so this is easy.
6  # the values are assumed to be 0-based, unlike most others.
7  # TODO: maybe we can use the SiPixelFrameReverter and friends to do these
8  # conversions without these parameters here.
9  module_rows = cms.int32(160),
10  module_cols = cms.int32(416),
11  roc_rows = cms.int32(80),
12  roc_cols = cms.int32(52),
13  n_rocs = cms.int32(16), # two-row geometry is assumed
14 
15  # "time geometry" parameters
16  max_lumisection = cms.int32(1000),
17  max_bunchcrossing = cms.int32(3600),
18 
19  # to select a different cabling map (for pilotBlade)
20  CablingMapLabel = cms.string(""),
21 
22  # online-specific things
23  onlineblock = cms.int32(20), # #LS after which histograms are reset
24  n_onlineblocks = cms.int32(100), # #blocks to keep for histograms with history
25 
26  # other geometry parameters (n_layers, n_ladders per layer, etc.) are inferred.
27  # there are lots of geometry assuptions in the code.
28 )

Definition at line 5 of file HistogramManager_cfi.py.

list HistogramManager_cfi.StandardSpecification2DProfile
Initial value:
1 = [
2  Specification(PerLayer2D)
3  .groupBy("PXBarrel/PXLayer/SignedLadder/SignedModule")
4  .groupBy("PXBarrel/PXLayer/SignedLadder", "EXTEND_X")
5  .groupBy("PXBarrel/PXLayer", "EXTEND_Y")
6  .reduce("MEAN")
7  .save(),
8  Specification(PerLayer2D)
9  .groupBy("PXForward/PXRing/SignedBladePanelCoord/SignedDiskCoord")
10  .groupBy("PXForward/PXRing/SignedBladePanelCoord", "EXTEND_X")
11  .groupBy("PXForward/PXRing", "EXTEND_Y")
12  .reduce("MEAN")
13  .save(),
14 ]
list save
Definition: cuy.py:1163

Definition at line 168 of file HistogramManager_cfi.py.

list HistogramManager_cfi.StandardSpecification2DProfile_Num
Initial value:
1 = [
2  Specification(PerLayer2D)
3  .groupBy("PXBarrel/PXLayer/SignedLadder/SignedModule" + "/DetId/Event")
4  .reduce("COUNT")
5  .groupBy("PXBarrel/PXLayer/SignedLadder/SignedModule")
6  .reduce("MEAN")
7  .groupBy("PXBarrel/PXLayer/SignedLadder", "EXTEND_X")
8  .groupBy("PXBarrel/PXLayer", "EXTEND_Y")
9  .save(),
10  Specification(PerLayer2D)
11  .groupBy("DetId/Event")
12  .reduce("COUNT")
13  .groupBy("PXForward/PXRing/PXDisk/SignedBladePanel")
14  .reduce("MEAN")
15  .groupBy("PXForward/PXRing/PXDisk", "EXTEND_Y")
16  .groupBy("PXForward/PXRing", "EXTEND_X")
17  .save(),
18 ]
list save
Definition: cuy.py:1163

Definition at line 293 of file HistogramManager_cfi.py.

list HistogramManager_cfi.StandardSpecificationInclusive_Num
Initial value:
1 = [#to count inclusively objects in substructures (BPix, FPix)
2  Specification().groupBy("PXBarrel/Event")
3  .reduce("COUNT")
4  .groupBy("PXBarrel")
5  .save(),
6  Specification().groupBy("PXForward/Event")
7  .reduce("COUNT")
8  .groupBy("PXForward")
9  .save()
10 ]
list save
Definition: cuy.py:1163

Definition at line 251 of file HistogramManager_cfi.py.

list HistogramManager_cfi.StandardSpecificationOccupancy
Initial value:
1 = [ #this produces pixel maps with counting
2  Specification(PerLayer2D)
3  .groupBy("PXBarrel/PXLayer/SignedLadderCoord/SignedModuleCoord")
4  .groupBy("PXBarrel/PXLayer/SignedLadderCoord", "EXTEND_X")
5  .groupBy("PXBarrel/PXLayer", "EXTEND_Y")
6  .save(),
7  Specification(PerLayer2D)
8  .groupBy("PXForward/PXRing/SignedBladePanelCoord/SignedDiskCoord")
9  .groupBy("PXForward/PXRing/SignedBladePanelCoord", "EXTEND_X")
10  .groupBy("PXForward/PXRing", "EXTEND_Y")
11  .save(),
12 ]
list save
Definition: cuy.py:1163

Definition at line 198 of file HistogramManager_cfi.py.

list HistogramManager_cfi.StandardSpecificationPixelmapProfile
Initial value:
1 = [#produces pixel map with the mean (TProfile)
2  Specification(PerLayer2D)
3  .groupBy("PXBarrel/PXLayer/SignedLadderCoord/SignedModuleCoord")
4  .groupBy("PXBarrel/PXLayer/SignedLadderCoord", "EXTEND_X")
5  .groupBy("PXBarrel/PXLayer", "EXTEND_Y")
6  .reduce("MEAN")
7  .save(),
8  Specification(PerLayer2D)
9  .groupBy("PXForward/PXRing/SignedBladePanelCoord/SignedDiskCoord")
10  .groupBy("PXForward/PXRing/SignedBladePanelCoord", "EXTEND_X")
11  .groupBy("PXForward/PXRing", "EXTEND_Y")
12  .reduce("MEAN")
13  .save(),
14 ]
list save
Definition: cuy.py:1163

Definition at line 183 of file HistogramManager_cfi.py.

list HistogramManager_cfi.StandardSpecifications1D

Definition at line 108 of file HistogramManager_cfi.py.

list HistogramManager_cfi.StandardSpecifications1D_Num

Definition at line 212 of file HistogramManager_cfi.py.

list HistogramManager_cfi.StandardSpecificationTrend
Initial value:
1 = [
2  Specification().groupBy("PXBarrel/Lumisection")
3  .reduce("MEAN")
4  .groupBy("PXBarrel", "EXTEND_X")
5  .save(),
6  Specification().groupBy("PXForward/Lumisection")
7  .reduce("MEAN")
8  .groupBy("PXForward", "EXTEND_X")
9  .save()
10 ]
list save
Definition: cuy.py:1163

Definition at line 144 of file HistogramManager_cfi.py.

list HistogramManager_cfi.StandardSpecificationTrend2D
Initial value:
1 = [
2  Specification().groupBy("PXBarrel/PXLayer/Lumisection")
3  .reduce("MEAN")
4  .groupBy("PXBarrel/PXLayer", "EXTEND_X")
5  .groupBy("PXBarrel", "EXTEND_Y")
6  .save(),
7  Specification().groupBy("PXForward/PXDisk/Lumisection")
8  .reduce("MEAN")
9  .groupBy("PXForward/PXDisk","EXTEND_X")
10  .groupBy("PXForward", "EXTEND_Y")
11  .save()
12 ]
list save
Definition: cuy.py:1163

Definition at line 155 of file HistogramManager_cfi.py.

list HistogramManager_cfi.StandardSpecificationTrend_Num
Initial value:
1 = [
2 
3  Specification().groupBy("PXBarrel/PXLayer/Event")
4  .reduce("COUNT")
5  .groupBy("PXBarrel/PXLayer/Lumisection")
6  .reduce("MEAN")
7  .groupBy("PXBarrel/PXLayer","EXTEND_X")
8  .groupBy("PXBarrel", "EXTEND_Y")
9  .save(),
10  Specification().groupBy("PXBarrel/PXLayer/Event")
11  .reduce("COUNT")
12  .groupBy("PXBarrel/Lumisection")
13  .reduce("MEAN")
14  .groupBy("PXBarrel", "EXTEND_X")
15  .save(),
16  Specification().groupBy("PXForward/PXDisk/Event")
17  .reduce("COUNT")
18  .groupBy("PXForward/PXDisk/Lumisection")
19  .reduce("MEAN")
20  .groupBy("PXForward/PXDisk","EXTEND_X")
21  .groupBy("PXForward", "EXTEND_Y")
22  .save(),
23  Specification().groupBy("PXForward/PXDisk/Event")
24  .reduce("COUNT")
25  .groupBy("PXForward/Lumisection")
26  .reduce("MEAN")
27  .groupBy("PXForward", "EXTEND_X")
28  .save(),
29 ]
list save
Definition: cuy.py:1163

Definition at line 262 of file HistogramManager_cfi.py.