Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:06:25

0001 #eoscms ls -l /eos/cms/store/group/dpg_hcal/comm_hcal/USC/run327785/USC_327785.root
0002 # choose run in /store/group/dpg_hcal/comm_hcal/USC/
0003 #how to run: cmsRun remoteMonitoring_LED_era2019_cfg.py 331370 /store/group/dpg_hcal/comm_hcal/USC/ /afs/cern.ch/work/z/zhokin/hcal/voc2/CMSSW_11_1_0_pre3/src/DPGAnalysis/HcalTools/scripts/rmt
0004 
0005 import sys
0006 import FWCore.ParameterSet.Config as cms
0007 from Configuration.StandardSequences.Eras import eras
0008 #process = cms.Process("TEST", eras.Run2_2018)
0009 
0010 process = cms.Process("TEST", eras.Run3)
0011 process.load("Configuration.StandardSequences.GeometryDB_cff")
0012 process.load("CondCore.CondDB.CondDB_cfi")
0013 process.load("EventFilter.L1GlobalTriggerRawToDigi.l1GtUnpack_cfi")
0014 process.l1GtUnpack.DaqGtInputTag = 'source'
0015 # from RelValAlCaPedestal_cfg_2018.py
0016 process.load('Configuration.StandardSequences.Services_cff')
0017 process.load('SimGeneral.HepPDTESSource.pythiapdt_cfi')
0018 process.load('FWCore.MessageService.MessageLogger_cfi')
0019 process.load('Configuration.EventContent.EventContent_cff')
0020 process.load('Configuration.StandardSequences.MagneticField_AutoFromDBCurrent_cff')
0021 process.load('Configuration.StandardSequences.Reconstruction_Data_cff')
0022 process.load('Configuration.StandardSequences.EndOfProcess_cff')
0023 #process.load('RecoLocalCalo.Configuration.hcalLocalReco_cff')
0024 process.load('Configuration.StandardSequences.GeometryRecoDB_cff')
0025 process.load('Configuration.StandardSequences.EndOfProcess_cff')
0026 
0027 runnumber = sys.argv[1]
0028 rundir = sys.argv[2]
0029 histodir = sys.argv[3]
0030 
0031 #print 'RUN = '+runnumber
0032 #print 'Input file = '+rundir+'/run'+runnumber+'/USC_'+runnumber+'.root'
0033 ##print 'Input file = '+rundir+'/USC_'+runnumber+'.root'
0034 #print 'Output file = '+histodir+'/LED_'+runnumber+'.root'
0035 
0036 process.maxEvents = cms.untracked.PSet(
0037 #    input = cms.untracked.int32(100)
0038   input = cms.untracked.int32(1000)
0039   )
0040 
0041 process.TFileService = cms.Service("TFileService",
0042       fileName = cms.string(histodir+'/MIXED_LED_'+runnumber+'.root')
0043 #      ,closeFileFast = cms.untracked.bool(True)
0044   )
0045 
0046 
0047 #process.source = cms.Source("PoolSource",
0048 process.source = cms.Source("HcalTBSource",
0049                             skipBadFiles=cms.untracked.bool(True),
0050                             firstLuminosityBlockForEachRun = cms.untracked.VLuminosityBlockID([]),
0051                             firstRun = cms.untracked.uint32(331370),
0052 #                            firstRun = cms.untracked.uint32(330153),
0053 #                            firstRun = cms.untracked.uint32(329416),
0054                             fileNames = cms.untracked.vstring(
0055                             rundir+'/run'+runnumber+'/USC_'+runnumber+'.root'
0056 ),
0057                             skipEvents=cms.untracked.uint32(1000), 
0058                             secondaryFileNames = cms.untracked.vstring()
0059                             )
0060 
0061 process.Analyzer = cms.EDAnalyzer("CMTRawAnalyzer",
0062                                   #
0063                                   Verbosity = cms.untracked.int32(0),
0064                                   #Verbosity = cms.untracked.int32(-9062),
0065                                   #Verbosity = cms.untracked.int32(-9063),
0066                                   #Verbosity = cms.untracked.int32(-9064),
0067                                   #Verbosity = cms.untracked.int32(-9065),
0068                                   #Verbosity = cms.untracked.int32(-84),
0069                                   #Verbosity = cms.untracked.int32(-91),
0070                                   #Verbosity = cms.untracked.int32(-92),
0071                                   #
0072                                   MapCreation = cms.untracked.int32(1),
0073                                   #
0074                                   recordNtuples = cms.untracked.bool(False),
0075                                   #recordNtuples = cms.untracked.bool(True),
0076                                   maxNeventsInNtuple = cms.int32(1),
0077                                   #
0078                                   #recordHistoes = cms.untracked.bool(False),
0079                                   recordHistoes = cms.untracked.bool(True),
0080                                   #
0081                                   ##scripts: zRunRatio34.C, zRunNbadchan.C
0082                                   studyRunDependenceHist = cms.untracked.bool(True),
0083                                   #studyRunDependenceHist = cms.untracked.bool(False),
0084                                   #
0085                                   ##scripts: zerrors.C
0086                                   studyCapIDErrorsHist = cms.untracked.bool(True),
0087                                   #studyCapIDErrorsHist = cms.untracked.bool(False),
0088                                   #
0089                                   ##scripts: zrms.C
0090                                   studyRMSshapeHist = cms.untracked.bool(True),
0091                                   #studyRMSshapeHist = cms.untracked.bool(False),
0092                                   #
0093                                   ##scripts: zratio34.C
0094                                   studyRatioShapeHist = cms.untracked.bool(True),
0095                                   #studyRatioShapeHist = cms.untracked.bool(False),
0096                                   #
0097                                   ##scripts: zadcamplitude.C
0098                                   studyADCAmplHist = cms.untracked.bool(True),
0099                                   #studyADCAmplHist = cms.untracked.bool(False),
0100                                   #
0101                                   ##scripts: ztsmean.C
0102                                   studyTSmeanShapeHist = cms.untracked.bool(True),
0103                                   #studyTSmeanShapeHist = cms.untracked.bool(False),
0104                                   #
0105                                   ##scripts: ztsmaxa.C
0106                                   studyTSmaxShapeHist = cms.untracked.bool(True),
0107                                   #studyTSmaxShapeHist = cms.untracked.bool(False),
0108                                   #
0109                                   ##scripts: zcalib....C
0110                                   studyCalibCellsHist = cms.untracked.bool(True),
0111                                   #studyCalibCellsHist = cms.untracked.bool(False),
0112                                   #
0113                                   ##scripts: zdifampl.C
0114                                   studyDiffAmplHist = cms.untracked.bool(True),
0115                                   #studyDiffAmplHist = cms.untracked.bool(False),
0116                                   #
0117                                   ##scripts: zadcamplitude.C
0118                                   studyPedestalsHist = cms.untracked.bool(True),
0119                                   #studyPedestalsHist = cms.untracked.bool(False),
0120                                   #
0121                                   ##scripts: zamplpedcorr.C
0122                                   studyPedestalCorrelations = cms.untracked.bool(True),
0123                                   #studyPedestalsHist = cms.untracked.bool(False),
0124                                   #
0125                                   #
0126                                   ##DigiCollectionLabel = cms.untracked.InputTag("hcalDigis"),
0127                                   #Verbosity = cms.untracked.int32(-54),
0128                                   #Verbosity = cms.untracked.int32(-22),
0129                                   #Verbosity = cms.untracked.int32(-11),
0130                                   #Verbosity = cms.untracked.int32(-12),
0131                                   #Verbosity = cms.untracked.int32(-13),
0132                                   #Verbosity = cms.untracked.int32(-51),
0133                                   #Verbosity = cms.untracked.int32(-24),
0134                                   #Verbosity = cms.untracked.int32(-244),
0135                                   #Verbosity = cms.untracked.int32(-233),
0136                                   #
0137                                   #
0138                                   #         Normal channels:
0139                                   #
0140                                   # -53 for  BAD HBHEHF channels from study on shape Ratio
0141                                   #Verbosity = cms.untracked.int32(-53),
0142                                   ratioHBMin = cms.double(0.70),
0143                                   ratioHBMax = cms.double(0.94),
0144                                   ratioHEMin = cms.double(0.60),
0145                                   ratioHEMax = cms.double(0.95),
0146                                   ratioHFMin = cms.double(0.45),
0147                                   ratioHFMax = cms.double(1.02),
0148                                   ratioHOMin = cms.double(0.40),
0149                                   ratioHOMax = cms.double(1.04),
0150                                   # -54 for  BAD HBHEHF channels from study on RMS of shapes
0151                                   #Verbosity = cms.untracked.int32(-54),
0152                                   rmsHBMin = cms.double(0.7),
0153                                   rmsHBMax = cms.double(2.5),
0154                                   rmsHEMin = cms.double(0.7),
0155                                   rmsHEMax = cms.double(2.2),
0156                                   rmsHFMin = cms.double(0.1),
0157                                   rmsHFMax = cms.double(2.6),
0158                                   rmsHOMin = cms.double(0.1),
0159                                   rmsHOMax = cms.double(2.8),
0160                                   # -55 for  BAD HBHEHF channels from study on TSmean of shapes
0161                                   #Verbosity = cms.untracked.int32(-55),
0162                                   TSmeanHBMin = cms.double(2.5),
0163                                   TSmeanHBMax = cms.double(5.5),
0164                                   TSmeanHEMin = cms.double(1.0),
0165                                   TSmeanHEMax = cms.double(5.2),
0166                                   TSmeanHFMin = cms.double(1.0),
0167                                   TSmeanHFMax = cms.double(4.2),
0168                                   TSmeanHOMin = cms.double(1.0),
0169                                   TSmeanHOMax = cms.double(4.8),
0170                                   # -55 for  BAD HBHEHF channels from study on TSmax of shapes
0171                                   #Verbosity = cms.untracked.int32(-55),
0172                                   TSpeakHBMin = cms.double(2.2),
0173                                   TSpeakHBMax = cms.double(5.5),
0174                                   TSpeakHEMin = cms.double(1.5),
0175                                   TSpeakHEMax = cms.double(6.5),
0176                                   TSpeakHFMin = cms.double(0.5),
0177                                   TSpeakHFMax = cms.double(4.5),
0178                                   TSpeakHOMin = cms.double(0.5),
0179                                   TSpeakHOMax = cms.double(7.5),
0180                                   # -56 for  BAD HBHEHOHF channels from study on ADC Amplitude
0181                                   #Verbosity = cms.untracked.int32(-56),
0182                                   ADCAmplHBMin = cms.double(10000.),
0183                                   ADCAmplHBMax = cms.double(300000.),
0184                                   ADCAmplHEMin = cms.double(20000.),  
0185                                   ADCAmplHEMax = cms.double(300000.),
0186                                   ADCAmplHFMin = cms.double(50.),
0187                                   ADCAmplHFMax = cms.double(9000.),
0188                                   ADCAmplHOMin = cms.double(50.),
0189                                   ADCAmplHOMax = cms.double(9000.),
0190                                   #
0191                                   # to see channels w/ PedestalSigma < cut
0192                                   #Verbosity = cms.untracked.int32(-57),
0193                                   pedestalwHBMax = cms.double(0.1),
0194                                   pedestalwHEMax = cms.double(0.1),
0195                                   pedestalwHFMax = cms.double(0.4),
0196                                   pedestalwHOMax = cms.double(0.1),
0197                                   #
0198                                   # to see channels for pedestal < cut
0199                                   pedestalHBMax = cms.double(0.1),
0200                                   pedestalHEMax = cms.double(0.6),
0201                                   pedestalHFMax = cms.double(0.8),
0202                                   pedestalHOMax = cms.double(0.1),
0203                                   #
0204                                   #
0205                                   #             CALIBRATION channels:
0206                                   #
0207                                   # for  BAD HBHEHOHF CALIBRATION channels from study on ADC amplitude
0208                                   # cuts for Laser runs:
0209                                   #calibrADCHBMin = cms.double(15.0),
0210                                   #calibrADCHEMin = cms.double(15.0),
0211                                   #calibrADCHOMin = cms.double(15.0),
0212                                   #calibrADCHFMin = cms.double(15.0),
0213                                   # cuts for LED runs:
0214                                   calibrADCHBMin = cms.double(1000.),
0215                   calibrADCHBMax = cms.double(100000000.),
0216                                   calibrADCHEMin = cms.double(1000.),
0217                   calibrADCHEMax = cms.double(100000000.),
0218                                   calibrADCHOMin = cms.double(1000.),
0219                   calibrADCHOMax = cms.double(100000000.),
0220                                   calibrADCHFMin = cms.double(100.),
0221                   calibrADCHFMax = cms.double(100000000.),
0222                   
0223                                   # for  BAD HBHEHOHF CALIBRATION channels from study on shape Ratio
0224                                   calibrRatioHBMin = cms.double(0.76),
0225                   calibrRatioHBMax = cms.double(0.94),
0226                                   calibrRatioHEMin = cms.double(0.76),
0227                   calibrRatioHEMax = cms.double(0.94),
0228                                   calibrRatioHOMin = cms.double(0.85),
0229                   calibrRatioHOMax = cms.double(0.99),
0230                                   calibrRatioHFMin = cms.double(0.5),
0231                   calibrRatioHFMax = cms.double(0.8),
0232                                   # for  BAD HBHEHOHF CALIBRATION channels from study on TSmax
0233                                   calibrTSmaxHBMin = cms.double(1.50),
0234                                   calibrTSmaxHBMax = cms.double(2.50),
0235                                   calibrTSmaxHEMin = cms.double(1.50),
0236                                   calibrTSmaxHEMax = cms.double(2.50),
0237                                   calibrTSmaxHOMin = cms.double(1.50),
0238                                   calibrTSmaxHOMax = cms.double(2.50),
0239                                   calibrTSmaxHFMin = cms.double(3.50),
0240                                   calibrTSmaxHFMax = cms.double(4.50),
0241                                   # for  BAD HBHEHOHF CALIBRATION channels from study on TSmean
0242                                   calibrTSmeanHBMin = cms.double(2.40),
0243                                   calibrTSmeanHBMax = cms.double(3.70),
0244                                   calibrTSmeanHEMin = cms.double(2.40),
0245                                   calibrTSmeanHEMax = cms.double(3.70),
0246                                   calibrTSmeanHOMin = cms.double(1.50),
0247                                   calibrTSmeanHOMax = cms.double(2.70),
0248                                   calibrTSmeanHFMin = cms.double(3.50),
0249                                   calibrTSmeanHFMax = cms.double(4.50),
0250                                   # for  BAD HBHEHOHF CALIBRATION channels from study on Width
0251                                   calibrWidthHBMin = cms.double(1.30),
0252                                   calibrWidthHBMax = cms.double(1.90),
0253                                   calibrWidthHEMin = cms.double(1.30),
0254                                   calibrWidthHEMax = cms.double(1.90),
0255                                   calibrWidthHOMin = cms.double(0.70),
0256                                   calibrWidthHOMax = cms.double(1.65),
0257                                   calibrWidthHFMin = cms.double(0.30),
0258                                   calibrWidthHFMax = cms.double(1.50),
0259                                   #
0260                                   # Special task of run or LS quality:
0261                                   #
0262                                   # flag for ask runs of LSs for RMT & CMT accordingly:
0263                                   #=0-runs, =1-LSs
0264                                   # keep for LED runs this flags =0 always
0265                                   flagtoaskrunsorls = cms.int32(0),
0266                                   #
0267                                   # flag for choice of criterion of bad channels:
0268                                   #=0-CapIdErr, =1-Ratio, =2-Width, =3-TSmax, =4-TSmean, =5-adcAmplitud
0269                                   # keep for CMT (global runs) this flags =0 always
0270                                   flagtodefinebadchannel = cms.int32(0),
0271                                   #how many bins you want on the plots:better to choice (#LS+1)
0272                                   howmanybinsonplots = cms.int32(25),
0273                                   #
0274                                   # ls - range for RBX study (and ??? perhaps for gain stability via abort gap):
0275                                   lsmin = cms.int32(1),
0276                                   #lsmax = cms.int32(620),
0277                                   lsmax = cms.int32(2600),
0278                                   #
0279                                   flagabortgaprejected = cms.int32(1),
0280                                   bcnrejectedlow = cms.int32(3446),
0281                                   bcnrejectedhigh= cms.int32(3564),
0282                                   #
0283                                   # flag cpu time reducing
0284                                   #=0-all plots, =1-optimized number of plots (for Global runs)
0285                                   flagcpuoptimization = cms.int32(0),
0286                                   #
0287                                   # flag for ask type of Normalization for CMT estimators:
0288                                   #=0-normalizationOn#evOfLS;   =1-averageVariable-normalizationOn#entriesInLS;
0289                                   flagestimatornormalization = cms.int32(1),
0290                                   #
0291                                   #
0292                                   # cuts on Nbadchannels to see LS dependences:
0293                                   # Verbosity = cms.untracked.int32(-77),
0294                                   # to select abnormal events,for which Nbcs > this limits
0295                                   lsdep_cut1_peak_HBdepth1 = cms.int32(20),
0296                                   lsdep_cut1_peak_HBdepth2 = cms.int32(7),
0297                                   lsdep_cut1_peak_HEdepth1 = cms.int32(16),
0298                                   lsdep_cut1_peak_HEdepth2 = cms.int32(13),
0299                                   lsdep_cut1_peak_HEdepth3 = cms.int32(4),
0300                                   lsdep_cut1_peak_HFdepth1 = cms.int32(10),
0301                                   lsdep_cut1_peak_HFdepth2 = cms.int32(5),
0302                                   lsdep_cut1_peak_HOdepth4 = cms.int32(45),
0303                                   # to select events with Nbcs > this limits
0304                                   lsdep_cut3_max_HBdepth1 = cms.int32(19),
0305                                   lsdep_cut3_max_HBdepth2 = cms.int32(6),
0306                                   lsdep_cut3_max_HEdepth1 = cms.int32(15),
0307                                   lsdep_cut3_max_HEdepth2 = cms.int32(12),
0308                                   lsdep_cut3_max_HEdepth3 = cms.int32(3),
0309                                   lsdep_cut3_max_HFdepth1 = cms.int32(9),
0310                                   lsdep_cut3_max_HFdepth2 = cms.int32(4),
0311                                   lsdep_cut3_max_HOdepth4 = cms.int32(40),
0312                                   #
0313                                   #
0314                                   #old was for runs:
0315                                   #                                  nbadchannels1 = cms.int32(7),
0316                                   #                                  nbadchannels2 = cms.int32(12),
0317                                   #                                  nbadchannels3 = cms.int32(50),
0318                                   #
0319                                   #Verbosity = cms.untracked.int32(-79),
0320                                   # cuts on Estimator1 to see LS dependences:
0321                                   lsdep_estimator1_HBdepth1 = cms.double(2500.),
0322                                   lsdep_estimator1_HBdepth2 = cms.double(2500.),
0323                                   lsdep_estimator1_HBdepth3 = cms.double(2500.),
0324                                   lsdep_estimator1_HBdepth4 = cms.double(2500.),
0325                                   lsdep_estimator1_HEdepth1 = cms.double(2500.),
0326                                   lsdep_estimator1_HEdepth2 = cms.double(2500.),
0327                                   lsdep_estimator1_HEdepth3 = cms.double(2500.),
0328                                   lsdep_estimator1_HEdepth4 = cms.double(2500.),
0329                                   lsdep_estimator1_HEdepth5 = cms.double(2500.),
0330                                   lsdep_estimator1_HEdepth6 = cms.double(2500.),
0331                                   lsdep_estimator1_HEdepth7 = cms.double(2500.),
0332                                   lsdep_estimator1_HFdepth1 = cms.double(2500.),
0333                                   lsdep_estimator1_HFdepth2 = cms.double(2500.),
0334                                   lsdep_estimator1_HFdepth3 = cms.double(2500.),
0335                                   lsdep_estimator1_HFdepth4 = cms.double(2500.),
0336                                   lsdep_estimator1_HOdepth4 = cms.double(2500.),
0337                                   # cuts on Estimator2 to see LS dependences:
0338                                   lsdep_estimator2_HBdepth1 = cms.double(7.),
0339                                   lsdep_estimator2_HBdepth2 = cms.double(7.),
0340                                   lsdep_estimator2_HEdepth1 = cms.double(7.),
0341                                   lsdep_estimator2_HEdepth2 = cms.double(7.),
0342                                   lsdep_estimator2_HEdepth3 = cms.double(7.),
0343                                   lsdep_estimator2_HFdepth1 = cms.double(7.),
0344                                   lsdep_estimator2_HFdepth2 = cms.double(7.),
0345                                   lsdep_estimator2_HOdepth4 = cms.double(7.),
0346                                   # cuts on Estimator3 to see LS dependences:
0347                                   lsdep_estimator3_HBdepth1 = cms.double(7.),
0348                                   lsdep_estimator3_HBdepth2 = cms.double(7.),
0349                                   lsdep_estimator3_HEdepth1 = cms.double(7.),
0350                                   lsdep_estimator3_HEdepth2 = cms.double(7.),
0351                                   lsdep_estimator3_HEdepth3 = cms.double(7.),
0352                                   lsdep_estimator3_HFdepth1 = cms.double(7.),
0353                                   lsdep_estimator3_HFdepth2 = cms.double(7.),
0354                                   lsdep_estimator3_HOdepth4 = cms.double(7.),
0355                                   # cuts on Estimator4 to see LS dependences:
0356                                   lsdep_estimator4_HBdepth1 = cms.double(5.),
0357                                   lsdep_estimator4_HBdepth2 = cms.double(5.),
0358                                   lsdep_estimator4_HEdepth1 = cms.double(5.),
0359                                   lsdep_estimator4_HEdepth2 = cms.double(5.),
0360                                   lsdep_estimator4_HEdepth3 = cms.double(5.),
0361                                   lsdep_estimator4_HFdepth1 = cms.double(5.),
0362                                   lsdep_estimator4_HFdepth2 = cms.double(5.),
0363                                   lsdep_estimator4_HOdepth4 = cms.double(5.),
0364                                   # cuts on Estimator5 to see LS dependences:
0365                                   lsdep_estimator5_HBdepth1 = cms.double(1.8),
0366                                   lsdep_estimator5_HBdepth2 = cms.double(1.8),
0367                                   lsdep_estimator5_HEdepth1 = cms.double(1.8),
0368                                   lsdep_estimator5_HEdepth2 = cms.double(1.8),
0369                                   lsdep_estimator5_HEdepth3 = cms.double(1.8),
0370                                   lsdep_estimator5_HFdepth1 = cms.double(1.8),
0371                                   lsdep_estimator5_HFdepth2 = cms.double(1.8),
0372                                   lsdep_estimator5_HOdepth4 = cms.double(1.8),
0373                                   #
0374                                   # 
0375                                   #Verbosity = cms.untracked.int32(-81),
0376                                   #Verbosity = cms.untracked.int32(-82),
0377                                   #Verbosity = cms.untracked.int32(-83),
0378                                   # 
0379                                   # use ADC amplitude:
0380                                   useADCmassive = cms.untracked.bool(True),
0381                                   useADCfC = cms.untracked.bool(False),
0382                                   useADCcounts = cms.untracked.bool(False),
0383                                   # 
0384                                   # Pedestals in fC
0385                                   #usePedestalSubtraction = cms.untracked.bool(True),
0386                                   usePedestalSubtraction = cms.untracked.bool(False),
0387                                   #
0388                                   # for possible ignoring of channels w/o signal, apply same cut for
0389                                   # HBHEHFHO on Amplitude, usable for all Estimators 1,2,3,4,5:
0390                                   # forallestimators_amplitude_bigger = cms.double(10.),
0391                                   forallestimators_amplitude_bigger = cms.double(-100.),
0392                                   #
0393                                   #
0394                                   # if 0 - do not use digis at all
0395                                   flagToUseDigiCollectionsORNot = cms.int32(1),
0396                                   #
0397                                   #usecontinuousnumbering = cms.untracked.bool(False),
0398                                   usecontinuousnumbering = cms.untracked.bool(True),
0399                                   #
0400                                   #
0401                                   #
0402                                   hcalCalibDigiCollectionTag = cms.InputTag('hcalDigis'),
0403                                   hbheDigiCollectionTag = cms.InputTag('hcalDigis'),
0404                                   hoDigiCollectionTag = cms.InputTag('hcalDigis'),
0405                                   hfDigiCollectionTag = cms.InputTag('hcalDigis'),
0406                                   #
0407                                   #
0408                                   #
0409                                   #
0410                                   #for upgrade: ---------------------------------------------------------
0411                                   hbheQIE11DigiCollectionTag = cms.InputTag('hcalDigis'),
0412                                   hbheQIE10DigiCollectionTag = cms.InputTag('hcalDigis'),
0413                                   # flag to use either only old QIE8 digiCollections or only new QIE10,11 digiCollections
0414                                   #=0-all digiCollections(default for normal running), =1-only old QIE8 digiCollections, 
0415                                   #=2-only new QIE1011 digiCollections, =3-only new QIE1011 digiCollections w/o new high depthes
0416                                   #=4-2016fall, =5-2016fall w/o new high depthes, =6-2017bebin, =7-2017bebin w/o new high depthes in HEonly
0417                                   #=8--2017bebin w/o new high depthes, =9-all digiCollections  w/o new high depthes
0418                                   # flag   HBHE8    HBHE11   HF8   HF10  comments:
0419                                   #  0       +        +       +     +     all
0420                                   #  1       +        -       +     -     old
0421                                   #  2       -        +       -     +     new
0422                                   #  3       -        +       -     +     new w/o high depthes
0423                                   #  4       +        -       +     +     2016fall
0424                                   #  5       +        -       +     +     2016fall w/o high depthes
0425                                   #  6       +        +       -     +     2017 && 2018 && 2021
0426                                   #  7       +        +       -     +     2017begin w/o high depthes in HEonly
0427                                   #  8       +        +       -     +     2017begin w/o high depthes
0428                                   #  9       +        +       +     +     all  w/o high depthes
0429                                   # 10       +        -       -     +     2017 w/o HEP17
0430                                   # 
0431                                   flagupgradeqie1011 = cms.int32(6),
0432                                   # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # 
0433                                   # flaguseshunt = 1 or 6 (6 is default for global runs) 
0434                                   flaguseshunt = cms.int32(6),
0435                                   # flagsipmcorrection: != 0 yes,apply; = 0 do not use;
0436                                   flagsipmcorrection = cms.int32(1),
0437                                   #end upgrade: --------------------------------------------------------- end upgrade
0438                                   #
0439                                   #
0440                                   # for local LASER runs ONLY!!! to be > 0    (,else = 0)
0441                                   flagLaserRaddam = cms.int32(0),
0442                                   # for gaussian fit for local shunt1 (Gsel0) led low-intensity or ped ONLY!!! to be  > 0    (,else = 0)
0443                                   flagfitshunt1pedorledlowintensity = cms.int32(0),
0444                                   #
0445                                   splashesUpperLimit = cms.int32(10000),
0446                                   #
0447                                   #
0448                                   # for use in IterativeMethod of CalibrationGroup!!! to be > 1    (,else = 0)
0449                                   flagIterativeMethodCalibrationGroupDigi = cms.int32(1),
0450                                   #
0451                                   # for use in IterativeMethod of CalibrationGroup!!! to be > 1    (,else = 0)
0452                                   flagIterativeMethodCalibrationGroupReco = cms.int32(1),
0453                                   #
0454                                   hbheInputSignalTag = cms.InputTag('hbherecoMBNZS'),
0455                                   hbheInputNoiseTag = cms.InputTag('hbherecoNoise'),
0456                                   hfInputSignalTag = cms.InputTag('hfrecoMBNZS'),
0457                                   hfInputNoiseTag = cms.InputTag('hfrecoNoise'),
0458                                   #
0459                                   #
0460                                   #
0461                                   #
0462                                   #
0463                                   #
0464                                   #HistOutFile = cms.untracked.string('LED_331370.root'),
0465                                   #HistOutFile = cms.untracked.string(histodir+'/LED_'+runnumber+'.root'),
0466                                   #MAPOutFile = cms.untracked.string('LogEleMapdb.h')
0467                                   #
0468                                   ##OutputFilePath = cms.string('/tmp/zhokin/'),        
0469                                   ##OutputFileExt = cms.string(''),
0470                                   #
0471                                   )     
0472 
0473 process.hcal_db_producer = cms.ESProducer("HcalDbProducer",
0474     dump = cms.untracked.vstring(''),
0475     file = cms.untracked.string('')
0476 )
0477 process.es_hardcode = cms.ESSource("HcalHardcodeCalibrations",
0478     toGet = cms.untracked.vstring('QIEShape',
0479         'QIEData',
0480         'ChannelQuality',
0481         'HcalQIEData',
0482         'Pedestals',
0483         'PedestalWidths',
0484         'Gains',
0485         'GainWidths',
0486         'ZSThresholds',
0487         'RespCorrs')
0488 )
0489 
0490 ## Jula's recipe for too many files 
0491 #process.options = cms.untracked.PSet(
0492 #   wantSummary = cms.untracked.bool(False),
0493 #   Rethrow = cms.untracked.vstring("ProductNotFound"), # make this exception fatal
0494 #   fileMode  =  cms.untracked.string('NOMERGE') # no ordering needed, but calls endRun/beginRun etc. at file boundaries
0495 #)
0496 
0497 ######################################################################################## Global Tags for 2018 data taking :
0498 # use twiki site to specify HLT reconstruction Global tags:
0499 #   https://twiki.cern.ch/twiki/bin/view/CMSPublic/SWGuideFrontierConditions
0500 #
0501 #   100X_dataRun2_HLT_v2        for CMSSW_10_0_3 onwards        CRUZET 2018     update of 0T templates for SiPixels
0502 #   100X_dataRun2_HLT_v1        for CMSSW_10_0_0 onwards        MWGRs 2018      first HLT GT for 2018 
0503 #
0504 #
0505 ############################################################################ GlobalTag :1+ good as 5
0506 #from Configuration.AlCa.GlobalTag_condDBv2 import GlobalTag
0507 #process.GlobalTag = GlobalTag(process.GlobalTag, '100X_dataRun2_HLT_v2', '')
0508 
0509 #from Configuration.AlCa.GlobalTag_condDBv2 import GlobalTag
0510 #process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:run2_data_FULL', '')
0511 
0512 
0513 #from Configuration.AlCa.GlobalTag_condDBv2 import GlobalTag
0514 #process.GlobalTag = GlobalTag(process.GlobalTag, '101X_dataRun2_HLT_v7', '')
0515 
0516 # 2019 Ultra Legacy 2017
0517 #process.GlobalTag.globaltag = '106X_dataRun2_trackerAlignment2017_v1'
0518 # 2019 Ultra Legacy 2018 test TkAl
0519 #process.GlobalTag.globaltag = '106X_dataRun2_v17'
0520 # 2019 Ultra Legacy 2018 
0521 #process.GlobalTag.globaltag = '106X_dataRun2_newTkAl_v18'
0522 # 2019 Ultra Legacy 2016
0523 #process.GlobalTag.globaltag = '106X_dataRun2_UL2016TkAl_v24'
0524 #process.GlobalTag.globaltag = '105X_dataRun2_v8'
0525 
0526 process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
0527 from Configuration.AlCa.autoCond import autoCond
0528 #process.GlobalTag.globaltag = '104X_dataRun2_v1'
0529 #process.GlobalTag.globaltag = '105X_postLS2_design_v4'
0530 process.GlobalTag.globaltag = '113X_dataRun3_HLT_v3'
0531 
0532 
0533 ############################################################################
0534 # V.EPSHTEIN:
0535 #process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff")
0536 #process.GlobalTag.globaltag = '100X_dataRun2_Prompt_Candidate_2018_01_31_16_01_36'
0537 ###
0538 #process.hcal_db_producer = cms.ESProducer("HcalDbProducer",
0539 #    dump = cms.untracked.vstring(''),
0540 #    file = cms.untracked.string('')
0541 #)
0542 #
0543 #process.hcalDigis= cms.EDProducer("HcalRawToDigi",
0544 #    FilterDataQuality = cms.bool(True),
0545 #    HcalFirstFED = cms.untracked.int32(700),
0546 #    InputLabel = cms.InputTag("source"),
0547 #    UnpackCalib = cms.untracked.bool(True),
0548 #    FEDs = cms.untracked.vint32(1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109, 1110, 1111, 1112, 1113, 1114, 1115, 1116, 1117),
0549 #)
0550 ###
0551 ############################################################################
0552 process.load('Configuration.StandardSequences.RawToDigi_Data_cff')
0553 process.hcalDigis.FilterDataQuality = cms.bool(False)
0554 process.hcalDigis.InputLabel = cms.InputTag("source")
0555 ############################################################################
0556 process.hcalDigis= cms.EDProducer("HcalRawToDigi",
0557 #    FilterDataQuality = cms.bool(True),
0558     FilterDataQuality = cms.bool(False),
0559     HcalFirstFED = cms.untracked.int32(700),
0560     InputLabel = cms.InputTag("source"),
0561     #InputLabel = cms.InputTag("rawDataCollector"),
0562 )
0563 #process.hcalDigis.FilterDataQuality = cms.bool(False)
0564 #process.hcalDigis.InputLabel = cms.InputTag("source")
0565 ############################################################################
0566 ##process.load("Calibration.HcalAlCaRecoProducers.ALCARECOHcalCalPedestal_cff")
0567 process.load("Calibration.HcalAlCaRecoProducers.ALCARECOHcalCalPedestalLocal_cff")
0568 ##process.load("Calibration.HcalAlCaRecoProducers.ALCARECOHcalCalMinBias_cff")
0569 #process.load("ALCARECOHcalCalPedestalLocal_cff")
0570 ############################################################################
0571 #process.p = cms.Path(process.hcalDigis*process.Analyzer)
0572 #process.p = cms.Path(process.seqALCARECOHcalCalMinBiasDigiNoHLT*process.seqALCARECOHcalCalMinBias*process.minbiasana)
0573 
0574 process.p = cms.Path(process.hcalDigis*process.seqALCARECOHcalCalMinBiasDigiNoHLT*process.seqALCARECOHcalCalMinBias*process.Analyzer)
0575 #process.p = cms.Path(process.seqALCARECOHcalCalMinBiasDigiNoHLT*process.seqALCARECOHcalCalMinBias*process.Analyzer)
0576 
0577 # see   /afs/cern.ch/work/z/zhokin/public/CMSSW_10_4_0_patch1/src/Calibration/HcalAlCaRecoProducers/python/ALCARECOHcalCalMinBias_cff.py
0578 ############################################################################
0579 process.MessageLogger = cms.Service("MessageLogger",
0580      categories   = cms.untracked.vstring(''),
0581      destinations = cms.untracked.vstring('cout'),
0582      debugModules = cms.untracked.vstring('*'),
0583      cout = cms.untracked.PSet(
0584          threshold = cms.untracked.string('WARNING'),
0585      WARNING = cms.untracked.PSet(limit = cms.untracked.int32(0))
0586      )
0587  )
0588 ############################################################################
0589 
0590 
0591