/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PhysicsTools/PatExamples/test/patTuple_embedding_cfg.py
37 строк
2 KB
Giulio Eulisse
Snapshot of CMSSW_6_2_0_pre8.
26 июн 2013, 18:12
26 июн 2013, 18:12
214ab73
Код
Авторство
О чём код?
# This is an example PAT configuration showing the usage of PAT on full sim samples # Starting with a skeleton process which gets imported with the following line from PhysicsTools.PatAlgos.patTemplate_cfg import * # note that you can use a bunch of core tools of PAT # to taylor your PAT configuration; for a few examples # uncomment the following lines from PhysicsTools.PatAlgos.tools.coreTools import * #restrictInputToAOD(process) #removeMCMatching(process, ['Muons']) #removeAllPATObjectsBut(process, ['Muons']) #removeSpecificPATObjects(process, ['Electrons', 'Muons', 'Taus']) #switch off new tau features introduced in 33X to restore 31X defaults # new feaures: - shrinkingConeTaus instead of fixedCone ones # - TaNC discriminants attached for shrinkingConeTaus # - default preselection on cleaningLayer1 from PhysicsTools.PatAlgos.tools.tauTools import * switchTo31Xdefaults(process) # let it run process.p = cms.Path( process.patDefaultSequence ) # In addition you usually want to change the following parameters: # # process.GlobalTag.globaltag = ... ## (according to https://twiki.cern.ch/twiki/bin/view/CMS/SWGuideFrontierConditions) # process.source.fileNames = [ # '/store/relval/CMSSW_3_1_1/RelValCosmics/GEN-SIM-RECO/STARTUP31X_V1-v2/0002/7625DA7D-E36B-DE11-865A-000423D174FE.root' # ] ## (e.g. 'file:AOD.root') # process.maxEvents.input = ... ## (e.g. -1 to run on all events) # process.out.outputCommands = [ ... ] ## (e.g. taken from PhysicsTools/PatAlgos/python/patEventContent_cff.py) # process.out.fileName = ... ## (e.g. 'myTuple.root') process.options.wantSummary = True ## (to suppress the long output at the end of the job)