Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-06-22 02:23:31

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 energyThreshold = 2.
0004 
0005 triggerTypes = cms.untracked.vstring('ECAL', 'HCAL', 'CSC', 'DT', 'RPC')
0006 
0007 ecalClusterTask = cms.untracked.PSet(
0008     params = cms.untracked.PSet(
0009         doExtra = cms.untracked.bool(True),
0010         energyThreshold = cms.untracked.double(energyThreshold),
0011         egTriggerAlgos = cms.untracked.vstring(
0012             "L1_SingleEG2",
0013             "L1_SingleEG5",
0014             "L1_SingleEG8",
0015             "L1_SingleEG10",
0016             "L1_SingleEG12",
0017             "L1_SingleEG15",
0018             "L1_SingleEG20",
0019             "L1_SingleEG25",
0020             "L1_DoubleNoIsoEG_BTB_tight",
0021             "L1_DoubleNoIsoEG_BTB_loose",
0022             "L1_DoubleNoIsoEGTopBottom",
0023             "L1_DoubleNoIsoEGTopBottomCen",
0024             "L1_DoubleNoIsoEGTopBottomCen2",
0025             "L1_DoubleNoIsoEGTopBottomCenVert"
0026         ),
0027         L1GlobalTriggerReadoutRecordTag = cms.untracked.InputTag("gtDigis"),
0028         L1MuGMTReadoutCollectionTag = cms.untracked.InputTag("gtDigis"),
0029         swissCrossMaxThreshold = cms.untracked.double(3.)
0030     ),    
0031     MEs = cms.untracked.PSet(
0032         TrendNBC = cms.untracked.PSet(
0033             path = cms.untracked.string('Ecal/Trends/ClusterTask %(prefix)s number of basic clusters'),
0034             kind = cms.untracked.string('TProfile'),
0035             otype = cms.untracked.string('Ecal2P'),
0036             btype = cms.untracked.string('Trend'),
0037             description = cms.untracked.string('Trend of the number of basic clusters per event in EB/EE.')
0038         ),
0039         TrendBCSize = cms.untracked.PSet(
0040             path = cms.untracked.string('Ecal/Trends/ClusterTask %(prefix)s size of basic clusters'),
0041             kind = cms.untracked.string('TProfile'),
0042             otype = cms.untracked.string('Ecal2P'),
0043             btype = cms.untracked.string('Trend'),
0044             description = cms.untracked.string('Trend of the mean size of the basic clusters.')
0045         ),
0046         BCOccupancy = cms.untracked.PSet(
0047             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC number map%(suffix)s'),
0048             kind = cms.untracked.string('TH2F'),
0049             otype = cms.untracked.string('Ecal3P'),
0050             btype = cms.untracked.string('SuperCrystal'),
0051             description = cms.untracked.string('Basic cluster occupancy.')
0052         ),
0053         BCOccupancyProjEta = cms.untracked.PSet(
0054             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC number projection eta%(suffix)s'),
0055             kind = cms.untracked.string('TH1F'),
0056             otype = cms.untracked.string('Ecal3P'),
0057             btype = cms.untracked.string('ProjEta'),
0058             description = cms.untracked.string('Projection of the basic cluster occupancy.')
0059         ),
0060         BCOccupancyProjPhi = cms.untracked.PSet(
0061             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC number projection phi%(suffix)s'),
0062             kind = cms.untracked.string('TH1F'),
0063             otype = cms.untracked.string('Ecal3P'),
0064             btype = cms.untracked.string('ProjPhi'),
0065             description = cms.untracked.string('Projection of the basic cluster occupancy.')
0066         ),
0067         BCSizeMapProjEta = cms.untracked.PSet(
0068             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC size projection eta%(suffix)s'),
0069             kind = cms.untracked.string('TProfile'),
0070             otype = cms.untracked.string('Ecal3P'),
0071             btype = cms.untracked.string('ProjEta'),
0072             description = cms.untracked.string('Eta-projection of the number of crystals in basic clusters.')
0073         ),
0074         BCSizeMapProjPhi = cms.untracked.PSet(
0075             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC size projection phi%(suffix)s'),
0076             kind = cms.untracked.string('TProfile'),
0077             otype = cms.untracked.string('Ecal3P'),
0078             btype = cms.untracked.string('ProjPhi'),
0079             description = cms.untracked.string('Phi-projection of the number of crystals in basic clusters.')
0080         ),
0081         BCSize = cms.untracked.PSet(
0082             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC size'),
0083             kind = cms.untracked.string('TH1F'),
0084             otype = cms.untracked.string('Ecal2P'),
0085             xaxis = cms.untracked.PSet(
0086                 high = cms.untracked.double(100.0),
0087                 nbins = cms.untracked.int32(50),
0088                 low = cms.untracked.double(0.0)
0089             ),
0090             btype = cms.untracked.string('User'),
0091             description = cms.untracked.string('Distribution of the number of crystals in basic clusters.')
0092         ),
0093         BCE = cms.untracked.PSet(
0094             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC energy'),
0095             kind = cms.untracked.string('TH1F'),
0096             otype = cms.untracked.string('Ecal2P'),
0097             xaxis = cms.untracked.PSet(
0098                 high = cms.untracked.double(150.0),
0099                 nbins = cms.untracked.int32(50),
0100                 low = cms.untracked.double(0.0),
0101                 title = cms.untracked.string('energy (GeV)')
0102             ),
0103             btype = cms.untracked.string('User'),
0104             description = cms.untracked.string('Basic cluster energy distribution.')
0105         ),
0106         BCSizeMap = cms.untracked.PSet(
0107             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC size map%(suffix)s'),
0108             kind = cms.untracked.string('TProfile2D'),
0109             otype = cms.untracked.string('Ecal3P'),
0110             btype = cms.untracked.string('SuperCrystal'),
0111             description = cms.untracked.string('2D distribution of the mean number of crystals in basic clusters.')
0112         ),
0113         BCNum = cms.untracked.PSet(
0114             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC number'),
0115             kind = cms.untracked.string('TH1F'),
0116             otype = cms.untracked.string('Ecal2P'),
0117             xaxis = cms.untracked.PSet(
0118                 high = cms.untracked.double(100.0),
0119                 nbins = cms.untracked.int32(20),
0120                 low = cms.untracked.double(0.0)
0121             ),
0122             btype = cms.untracked.string('User'),
0123             description = cms.untracked.string('Distribution of the number of basic clusters per event.')
0124         ),
0125         BCEMapProjEta = cms.untracked.PSet(
0126             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC energy projection eta%(suffix)s'),
0127             kind = cms.untracked.string('TProfile'),
0128             yaxis = cms.untracked.PSet(
0129                 title = cms.untracked.string('energy (GeV)')
0130             ),
0131             otype = cms.untracked.string('Ecal3P'),
0132             btype = cms.untracked.string('ProjEta'),
0133             description = cms.untracked.string('Projection of the mean energy of the basic clusters.')
0134         ),
0135         BCEMapProjPhi = cms.untracked.PSet(
0136             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC energy projection phi%(suffix)s'),
0137             kind = cms.untracked.string('TProfile'),
0138             yaxis = cms.untracked.PSet(
0139                 title = cms.untracked.string('energy (GeV)')
0140             ),
0141             otype = cms.untracked.string('Ecal3P'),
0142             btype = cms.untracked.string('ProjPhi'),
0143             description = cms.untracked.string('Projection of the mean energy of the basic clusters.')
0144         ),
0145         BCEMap = cms.untracked.PSet(
0146             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC energy map%(suffix)s'),
0147             kind = cms.untracked.string('TProfile2D'),
0148             zaxis = cms.untracked.PSet(
0149                 title = cms.untracked.string('energy (GeV)')
0150             ),
0151             otype = cms.untracked.string('Ecal3P'),
0152             btype = cms.untracked.string('SuperCrystal'),
0153             description = cms.untracked.string('2D distribution of the mean energy of the basic clusters.')
0154         ),
0155         BCEtMapProjEta = cms.untracked.PSet(
0156             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC ET projection eta%(suffix)s'),
0157             kind = cms.untracked.string('TProfile'),
0158             yaxis = cms.untracked.PSet(
0159                 title = cms.untracked.string('transverse energy (GeV)')
0160             ),
0161             otype = cms.untracked.string('Ecal3P'),
0162             btype = cms.untracked.string('ProjEta'),
0163             description = cms.untracked.string('Projection of the mean Et of the basic clusters.')
0164         ),
0165         BCEtMapProjPhi = cms.untracked.PSet(
0166             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT BC ET projection phi%(suffix)s'),
0167             kind = cms.untracked.string('TProfile'),
0168             yaxis = cms.untracked.PSet(
0169                 title = cms.untracked.string('transverse energy (GeV)')
0170             ),
0171             otype = cms.untracked.string('Ecal3P'),
0172             btype = cms.untracked.string('ProjPhi'),
0173             description = cms.untracked.string('Projection of the mean Et of the basic clusters.')
0174         ),
0175         SCR9 = cms.untracked.PSet(
0176             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC R9'),
0177             kind = cms.untracked.string('TH1F'),
0178             otype = cms.untracked.string('Ecal2P'),
0179             xaxis = cms.untracked.PSet(
0180                 high = cms.untracked.double(1.2),
0181                 nbins = cms.untracked.int32(50),
0182                 low = cms.untracked.double(0.0)
0183             ),
0184             btype = cms.untracked.string('User'),
0185             description = cms.untracked.string('Distribution of E_seed / E_3x3 of the super clusters.')
0186         ),
0187         SCR9Raw = cms.untracked.PSet(
0188             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC R9 Raw'),
0189             kind = cms.untracked.string('TH1F'),
0190             otype = cms.untracked.string('Ecal2P'),
0191             xaxis = cms.untracked.PSet(
0192                 high = cms.untracked.double(1.2),
0193                 nbins = cms.untracked.int32(50),
0194                 low = cms.untracked.double(0.0)
0195             ),
0196             btype = cms.untracked.string('User'),
0197             description = cms.untracked.string('Distribution of E_seed / E_3x3 of the super clusters. Uses raw energy definition')
0198         ),
0199         SCR9Full = cms.untracked.PSet(
0200             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC R9 Full'),
0201             kind = cms.untracked.string('TH1F'),
0202             otype = cms.untracked.string('Ecal2P'),
0203             xaxis = cms.untracked.PSet(
0204                 high = cms.untracked.double(1.2),
0205                 nbins = cms.untracked.int32(50),
0206                 low = cms.untracked.double(0.0)
0207             ),
0208             btype = cms.untracked.string('User'),
0209             description = cms.untracked.string('Distribution of E_seed / E_3x3 of the super clusters. Uses full E_3x3 definition')
0210         ),
0211         SCR9FullRaw = cms.untracked.PSet(
0212             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC R9 Full Raw'),
0213             kind = cms.untracked.string('TH1F'),
0214             otype = cms.untracked.string('Ecal2P'),
0215             xaxis = cms.untracked.PSet(
0216                 high = cms.untracked.double(1.2),
0217                 nbins = cms.untracked.int32(50),
0218                 low = cms.untracked.double(0.0)
0219             ),
0220             btype = cms.untracked.string('User'),
0221             description = cms.untracked.string('Distribution of E_seed / E_3x3 of the super clusters. Uses full E_3x3 and raw energy definition')
0222         ),
0223         SCNum = cms.untracked.PSet(
0224             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC number'),
0225             kind = cms.untracked.string('TH1F'),
0226             otype = cms.untracked.string('Ecal2P'),
0227             xaxis = cms.untracked.PSet(
0228                 high = cms.untracked.double(20.0),
0229                 nbins = cms.untracked.int32(20),
0230                 low = cms.untracked.double(0.0)
0231             ),
0232             btype = cms.untracked.string('User'),
0233             description = cms.untracked.string('Distribution of the number of super clusters per event in EB/EE.')
0234         ),
0235         TrendNSC = cms.untracked.PSet(
0236             path = cms.untracked.string('Ecal/Trends/ClusterTask %(prefix)s number of super clusters'),
0237             kind = cms.untracked.string('TProfile'),
0238             otype = cms.untracked.string('Ecal2P'),
0239             btype = cms.untracked.string('Trend'),
0240             description = cms.untracked.string('Trend of the number of super clusters per event in EB/EE.')
0241         ),
0242         TrendSCSize = cms.untracked.PSet(
0243             path = cms.untracked.string('Ecal/Trends/ClusterTask %(prefix)s size of super clusters'),
0244             kind = cms.untracked.string('TProfile'),
0245             otype = cms.untracked.string('Ecal2P'),
0246             btype = cms.untracked.string('Trend'),
0247             description = cms.untracked.string('Trend of the mean size (number of crystals) of the super clusters.')
0248         ),
0249         SCSeedEnergy = cms.untracked.PSet(
0250             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC seed crystal energy'),
0251             kind = cms.untracked.string('TH1F'),
0252             otype = cms.untracked.string('Ecal2P'),
0253             xaxis = cms.untracked.PSet(
0254                 high = cms.untracked.double(150.0),
0255                 nbins = cms.untracked.int32(50),
0256                 low = cms.untracked.double(0.0),
0257                 title = cms.untracked.string('energy (GeV)')
0258             ),
0259             btype = cms.untracked.string('User'),
0260             description = cms.untracked.string('Energy distribution of the crystals that seeded super clusters.')
0261         ),
0262         SCE = cms.untracked.PSet(
0263             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC energy'),
0264             kind = cms.untracked.string('TH1F'),
0265             otype = cms.untracked.string('Ecal2P'),
0266             xaxis = cms.untracked.PSet(
0267                 high = cms.untracked.double(150.0),
0268                 nbins = cms.untracked.int32(50),
0269                 low = cms.untracked.double(0.0),
0270                 title = cms.untracked.string('energy (GeV)')
0271             ),
0272             btype = cms.untracked.string('User'),
0273             description = cms.untracked.string('Super cluster energy distribution.')
0274         ),
0275         SCRawE = cms.untracked.PSet(
0276             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC raw energy'),
0277             kind = cms.untracked.string('TH1F'),
0278             otype = cms.untracked.string('Ecal2P'),
0279             xaxis = cms.untracked.PSet(
0280                 high = cms.untracked.double(150.0),
0281                 nbins = cms.untracked.int32(50),
0282                 low = cms.untracked.double(0.0),
0283                 title = cms.untracked.string('energy (GeV)')
0284             ),
0285             btype = cms.untracked.string('User'),
0286             description = cms.untracked.string('Super cluster raw energy distribution.')
0287         ),
0288         SCNcrystals = cms.untracked.PSet(
0289             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC size (crystal)'),
0290             kind = cms.untracked.string('TH1F'),
0291             otype = cms.untracked.string('Ecal2P'),
0292             xaxis = cms.untracked.PSet(
0293                 high = cms.untracked.double(150.0),
0294                 nbins = cms.untracked.int32(50),
0295                 low = cms.untracked.double(0.0)
0296             ),
0297             btype = cms.untracked.string('User'),
0298             description = cms.untracked.string('Distribution of the super cluster size (number of crystals).')
0299         ),
0300         SingleCrystalCluster = cms.untracked.PSet(
0301             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC single crystal cluster seed occupancy map%(suffix)s'),
0302             kind = cms.untracked.string('TH2F'),
0303             otype = cms.untracked.string('Ecal3P'),
0304             btype = cms.untracked.string('SuperCrystal'),
0305             description = cms.untracked.string('Occupancy map of the occurrence of super clusters with only one constituent')
0306         ),
0307         SCNBCs = cms.untracked.PSet(
0308             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC size'),
0309             kind = cms.untracked.string('TH1F'),
0310             otype = cms.untracked.string('Ecal2P'),
0311             xaxis = cms.untracked.PSet(
0312                 high = cms.untracked.double(15.0),
0313                 nbins = cms.untracked.int32(15),
0314                 low = cms.untracked.double(0.0)
0315             ),
0316             btype = cms.untracked.string('User'),
0317             description = cms.untracked.string('Distribution of the super cluster size (number of basic clusters)')
0318         ),
0319         SCSeedOccupancy = cms.untracked.PSet(
0320             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC seed occupancy map%(suffix)s'),
0321             kind = cms.untracked.string('TH2F'),
0322             otype = cms.untracked.string('Ecal3P'),
0323             btype = cms.untracked.string('SuperCrystal'),
0324             description = cms.untracked.string('Occupancy map of the crystals that seeded super clusters.')
0325         ),
0326         SCELow = cms.untracked.PSet(
0327             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC energy (low scale)'),
0328             kind = cms.untracked.string('TH1F'),
0329             otype = cms.untracked.string('Ecal2P'),
0330             xaxis = cms.untracked.PSet(
0331                 high = cms.untracked.double(10.0),
0332                 nbins = cms.untracked.int32(50),
0333                 low = cms.untracked.double(0.0),
0334                 title = cms.untracked.string('energy (GeV)')
0335             ),
0336             btype = cms.untracked.string('User'),
0337             description = cms.untracked.string('Energy distribution (raw energy) of the super clusters (low scale).')
0338         ),
0339         SCRawELow = cms.untracked.PSet(
0340             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC raw energy (low scale)'),
0341             kind = cms.untracked.string('TH1F'),
0342             otype = cms.untracked.string('Ecal2P'),
0343             xaxis = cms.untracked.PSet(
0344                 high = cms.untracked.double(10.0),
0345                 nbins = cms.untracked.int32(50),
0346                 low = cms.untracked.double(0.0),
0347                 title = cms.untracked.string('energy (GeV)')
0348             ),
0349             btype = cms.untracked.string('User'),
0350             description = cms.untracked.string('Energy distribution of the super clusters (low scale).')
0351         ),
0352         SCRawEHigh = cms.untracked.PSet(
0353             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC raw energy (high scale)'),
0354             kind = cms.untracked.string('TH1F'),
0355             otype = cms.untracked.string('Ecal2P'),
0356             xaxis = cms.untracked.PSet(
0357                 high = cms.untracked.double(1000.0),
0358                 nbins = cms.untracked.int32(50),
0359                 low = cms.untracked.double(0.0),
0360                 title = cms.untracked.string('energy (GeV)')
0361             ),
0362             btype = cms.untracked.string('User'),
0363             description = cms.untracked.string('Energy distribution of the super clusters (high scale).')
0364         ),
0365         SCClusterVsSeed = cms.untracked.PSet(
0366             kind = cms.untracked.string('TH2F'),
0367             yaxis = cms.untracked.PSet(
0368                 high = cms.untracked.double(150.0),
0369                 nbins = cms.untracked.int32(50),
0370                 low = cms.untracked.double(0.0),
0371                 title = cms.untracked.string('energy (GeV)')
0372             ),
0373             otype = cms.untracked.string('Ecal2P'),
0374             xaxis = cms.untracked.PSet(
0375                 high = cms.untracked.double(150.0),
0376                 nbins = cms.untracked.int32(50),
0377                 low = cms.untracked.double(0.0),
0378                 title = cms.untracked.string('energy (GeV)')
0379             ),
0380             btype = cms.untracked.string('User'),
0381             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTask/%(prefix)sCLT SC energy vs seed crystal energy'),
0382             description = cms.untracked.string('Relation between super cluster energy and its seed crystal energy.')
0383         ),
0384         SCSizeVsEnergy = cms.untracked.PSet(
0385             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTaskExtras/%(prefix)sCLTE SC size (crystal) vs energy (GeV)'),
0386             kind = cms.untracked.string('TProfile'),
0387             otype = cms.untracked.string('Ecal2P'),
0388             btype = cms.untracked.string('User'),
0389             xaxis = cms.untracked.PSet(
0390                 high = cms.untracked.double(10.),
0391                 low = cms.untracked.double(0.),
0392                 nbins = cms.untracked.int32(100),
0393                 title = cms.untracked.string('energy (GeV)')
0394             ),
0395             description = cms.untracked.string('Mean SC size in crystals as a function of the SC energy.')
0396         ),
0397         SCSeedOccupancyHighE = cms.untracked.PSet(
0398             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTaskExtras/%(prefix)sCLTE SC seed occupancy map%(suffix)s (high energy clusters) %(supercrystal)s binned'),
0399             kind = cms.untracked.string('TH2F'),
0400             otype = cms.untracked.string('Ecal3P'),
0401             btype = cms.untracked.string('SuperCrystal'),
0402             description = cms.untracked.string('Occupancy map of the crystals that seeded super clusters with energy > ' + str(energyThreshold) + ' GeV.')
0403         ),
0404         SCSeedOccupancyTrig = cms.untracked.PSet(
0405             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTaskExtras/%(prefix)sCLTE SC seed occupancy map%(suffix)s (%(trig)s triggered) %(supercrystal)s binned'),
0406             kind = cms.untracked.string('TH2F'),
0407             otype = cms.untracked.string('Ecal3P'),
0408             btype = cms.untracked.string('SuperCrystal'),
0409             description = cms.untracked.string('Occupancy map of the crystals that seeded super clusters.'),
0410             multi = cms.untracked.PSet(
0411                 trig = triggerTypes
0412             )
0413         ),
0414         SCSeedTimeTrigEx = cms.untracked.PSet(
0415             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTaskExtras/%(prefix)sCLTE SC seed crystal timing (%(trig)s exclusive triggered)'),
0416             kind = cms.untracked.string('TH1F'),
0417             otype = cms.untracked.string('Ecal2P'),
0418             btype = cms.untracked.string('User'),
0419             xaxis = cms.untracked.PSet(
0420                 high = cms.untracked.double(25.),
0421                 low = cms.untracked.double(-25.),
0422                 nbins = cms.untracked.int32(100),
0423                 title = cms.untracked.string('time (ns)')
0424             ),
0425             description = cms.untracked.string('Timing distribution of the crystals that seeded super clusters.'),
0426             multi = cms.untracked.PSet(
0427                 trig = triggerTypes
0428             )        
0429         ),
0430         SCSeedTimeMapTrigEx = cms.untracked.PSet(
0431             path = cms.untracked.string('%(subdet)s/%(prefix)sClusterTaskExtras/%(prefix)sCLTE SC seed crystal timing map%(suffix)s (%(trig)s exclusive triggered) %(supercrystal)s binned'),
0432             kind = cms.untracked.string('TProfile2D'),
0433             otype = cms.untracked.string('Ecal3P'),
0434             btype = cms.untracked.string('SuperCrystal'),
0435             zaxis = cms.untracked.PSet(
0436                 high = cms.untracked.double(25.),
0437                 low = cms.untracked.double(-25.),
0438                 title = cms.untracked.string('time (ns)')
0439             ),
0440             description = cms.untracked.string('Mean timing of the crystals that seeded super clusters.'),
0441             multi = cms.untracked.PSet(
0442                 trig = triggerTypes
0443             )
0444         ),
0445         SCOccupancyProjEta = cms.untracked.PSet(
0446             path = cms.untracked.string("%(subdet)s/%(prefix)sRecoSummary/superClusters_%(subdetshortsig)s_eta"),
0447             kind = cms.untracked.string('TH1F'),
0448             otype = cms.untracked.string('Ecal2P'),
0449             btype = cms.untracked.string('ProjEta'),
0450             description = cms.untracked.string('Supercluster eta.')
0451         ),
0452         SCOccupancyProjPhi = cms.untracked.PSet(
0453             path = cms.untracked.string("%(subdet)s/%(prefix)sRecoSummary/superClusters_%(subdetshortsig)s_phi"),
0454             kind = cms.untracked.string('TH1F'),
0455             otype = cms.untracked.string('Ecal2P'),
0456             btype = cms.untracked.string('ProjPhi'),
0457             description = cms.untracked.string('Supercluster phi.')
0458         ),
0459         SCSwissCross = cms.untracked.PSet(
0460             path = cms.untracked.string("EcalBarrel/EBRecoSummary/superClusters_EB_E1oE4"),
0461             kind = cms.untracked.string('TH1F'),
0462             otype = cms.untracked.string('EB'),
0463             btype = cms.untracked.string('User'),
0464             xaxis = cms.untracked.PSet(
0465                 high = cms.untracked.double(1.5),
0466                 low = cms.untracked.double(0.),
0467                 nbins = cms.untracked.int32(100)
0468             ),
0469             description = cms.untracked.string('Swiss cross for SC maximum-energy crystal.')
0470         ),
0471         Triggers = cms.untracked.PSet( # not exactly cluster related, but is useful to know how many times each category fired
0472             path = cms.untracked.string('EcalBarrel/EBClusterTaskExtras/EBCLTE triggers'),
0473             kind = cms.untracked.string('TH1F'),
0474             otype = cms.untracked.string('None'),
0475             btype = cms.untracked.string('User'),
0476             xaxis = cms.untracked.PSet(
0477                 nbins = cms.untracked.int32(5),
0478                 high = cms.untracked.double(5.),
0479                 low = cms.untracked.double(0.),
0480                 labels = triggerTypes,
0481                 title = cms.untracked.string('triggers')
0482             ),
0483             description = cms.untracked.string('Counter for the trigger categories')
0484         ),
0485         ExclusiveTriggers = cms.untracked.PSet( # not exactly cluster related, but is useful to know how many times each category fired
0486             path = cms.untracked.string('EcalBarrel/EBClusterTaskExtras/EBCLTE exclusive triggers'),
0487             kind = cms.untracked.string('TH1F'),
0488             otype = cms.untracked.string('None'),
0489             btype = cms.untracked.string('User'),
0490             xaxis = cms.untracked.PSet(
0491                 nbins = cms.untracked.int32(5),
0492                 high = cms.untracked.double(5.),
0493                 low = cms.untracked.double(0.),
0494                 labels = triggerTypes,
0495                 title = cms.untracked.string('triggers')
0496             ),
0497             description = cms.untracked.string('Counter for the trigger categories')
0498         )
0499     )
0500 )
0501