Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:31

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("myprocess")
0004 process.load("CondCore.DBCommon.CondDBCommon_cfi")
0005 
0006 process.load ("Pool_NAME")
0007 process.load ("Btag_NAME")
0008 
0009 #
0010 # change inside the source
0011 #
0012 
0013 #BtagPerformanceESProducer_mistagJPL = cms.ESProducer("BtagPerformanceESProducer",
0014 #                                                     # this is what it makes available
0015 #                                                     ComponentName = cms.string('Mistag_JPL'),
0016 #                                                     # this is where it gets the payload from                                                
0017 #                                                     PayloadName = cms.string('MISTAGJPL_T'),
0018 #                                                     WorkingPointName = cms.string('MISTAGJPL_WP')
0019 #                                                     )
0020 #BtagPerformanceESProducer_mistagJPM = cms.ESProducer("BtagPerformanceESProducer",
0021 #                                                     # this is what it makes available
0022 #                                                     ComponentName = cms.string('Mistag_JPM'),
0023 #                                                     # this is where it gets the payload from                                                
0024 #                                                     PayloadName = cms.string('MISTAGJPM_T'),
0025 #                                                     WorkingPointName = cms.string('MISTAGJPM_WP')
0026 #                                                     )
0027 #BtagPerformanceESProducer_mistagJPT = cms.ESProducer("BtagPerformanceESProducer",
0028 #                                                     # this is what it makes available
0029 #                                                     ComponentName = cms.string('Mistag_JPT'),
0030 #                                                     # this is where it gets the payload from                                                
0031 #                                                     PayloadName = cms.string('MISTAGJPT_T'),
0032 #                                                     WorkingPointName = cms.string('MISTAGJPT_WP')
0033 #                                                     )
0034 #
0035 
0036 
0037 
0038 process.maxEvents = cms.untracked.PSet(
0039     input = cms.untracked.int32(1)
0040     )
0041 process.source = cms.Source("EmptySource")
0042 
0043 
0044 
0045 
0046 process.demo = cms.EDAnalyzer('validateBTagDB',
0047                               CalibrationForBEfficiency = cms.string('MISTAGSSVM'),
0048                               CalibrationForCEfficiency = cms.string('MISTAGSSVM'),
0049                               CalibrationForMistag = cms.string('MISTAGSSVM'),
0050                               algoNames = cms.vstring("NAME"),                              
0051                               fileList = cms.vstring("../FILE"),                              
0052                               )
0053 
0054 process.p = cms.Path(process.demo)
0055 
0056 #
0057