/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CalibTracker/SiStripCommon/python/shallowTree_test_template.py
93 строки
3 KB
mmusich
move from MagneticField_AutoFromDBCurrent_cff to MagneticField_cff in all Tracker DPG-owned configurations
14 окт 2020, 16:08
14 окт 2020, 16:08
14be007
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from PhysicsTools.PatAlgos.patInputFiles_cff import filesRelValTTbarPileUpGENSIMRECO import Utilities.General.cmssw_das_client as cmssw_das_client #from pdb import set_trace ###### # # Ideally to be used, unfortunately sample is not at CERN # # from PhysicsTools.PatAlgos.tools.cmsswVersionTools import pickRelValInputFiles # filesRelValTTbarPileUpGENSIMRECO = cms.untracked.vstring( # pickRelValInputFiles( cmsswVersion = 'CMSSW_9_2_3' # , relVal = 'RelValTTbar_13' # , globalTag = 'PUpmx25ns_92X_upgrade2017_realistic_v2_earlyBS2017' # , dataTier = 'GEN-SIM-RECO' # , maxVersions = 1 # , numberOfFiles = 1 # , useDAS = True # ) # ) def add_rawRelVals(process): query='dataset file=%s' % process.source.fileNames[0] dataset = cmssw_das_client.get_data(query, limit = 0) if not dataset: raise RuntimeError( 'Das returned no dataset parent of the input file: %s \n' 'The parenthood is needed to add RAW secondary input files' % process.source.fileNames[0] ) raw_dataset = dataset['data'][0]['dataset'][0]['name'].replace('GEN-SIM-RECO','GEN-SIM-DIGI-RAW-HLTDEBUG') raw_files = cmssw_das_client.get_data('file dataset=%s' % raw_dataset, limit=0)['data'] if not raw_files: raise RuntimeError('No files found belonging to the GEN-SIM-DIGI-RAW-HLTDEBUG sample!') #convert from unicode into normal string since vstring does not pick it up raw_files = [str(i) for i in raw_files] process.source.secondaryFileNames = cms.untracked.vstring(*raw_files) return process process = cms.Process('JustATest') process.load('Configuration.StandardSequences.MagneticField_cff') process.load("Configuration.Geometry.GeometryRecoDB_cff") process.load("Configuration.StandardSequences.FrontierConditions_GlobalTag_cff") from Configuration.AlCa.GlobalTag import GlobalTag process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:phase1_2017_realistic') process.load('FWCore.MessageService.MessageLogger_cfi') process.load('Configuration.StandardSequences.Services_cff') process.TFileService = cms.Service( "TFileService", fileName = cms.string( 'FIXME' ), closeFileFast = cms.untracked.bool(True) ) ## Maximal Number of Events process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(10) ) process.source = cms.Source ( "PoolSource", fileNames = filesRelValTTbarPileUpGENSIMRECO ) process.options = cms.untracked.PSet( wantSummary = cms.untracked.bool(True) ) process.MessageLogger.cerr.FwkReport.reportEvery = 1 process.options = cms.untracked.PSet( Rethrow = cms.untracked.vstring('OtherCMS', 'StdException', 'Unknown', 'BadAlloc', 'BadExceptionType', 'ProductNotFound', 'DictionaryNotFound', 'InsertFailure', 'Configuration', 'LogicError', 'UnimplementedFeature', 'InvalidReference', 'NullPointerError', 'NoProductSpecified', 'EventTimeout', 'EventCorruption', 'ScheduleExecutionFailure', 'EventProcessorFailure', 'FileInPathError', 'FileOpenError', 'FileReadError', 'FatalRootError', 'MismatchedInputFiles', 'ProductDoesNotSupportViews', 'ProductDoesNotSupportPtr', 'NotFound') )