CMS 3D CMS Logo

Functions | Variables

24_customise_reconstruct_overlay_event Namespace Reference

Functions

def customise

Variables

 runOnTheGrid = False
 runOnTheIC1 = False

Function Documentation

def 24_customise_reconstruct_overlay_event::customise (   process)

Definition at line 7 of file 24_customise_reconstruct_overlay_event.py.

00008                       :
00009         process._Process__name="FINALRECO"
00010         #process.Tracer = cms.Service("Tracer")
00011         process.options   = cms.untracked.PSet( wantSummary = cms.untracked.bool(True) )
00012         #process.options = cms.untracked.PSet( SkipEvent = cms.untracked.vstring('ProductNotFound') )
00013         
00014         module_name="overlay"
00015         process_name="OVERLAY"
00016         process.options   = cms.untracked.PSet( wantSummary = cms.untracked.bool(True) )
00017         
00018         process.dt1DRecHits.dtDigiLabel = cms.InputTag(module_name,"muonDTDigisDM")
00019         process.csc2DRecHits.wireDigiTag = cms.InputTag(module_name,"MuonCSCWireDigisDM")
00020         process.csc2DRecHits.stripDigiTag = cms.InputTag(module_name,"MuonCSCStripDigisDM")
00021         process.rpcRecHits.rpcDigiLabel = cms.InputTag(module_name,"muonRPCDigisDM")
00022         process.siPixelClusters.src = cms.InputTag(module_name,"siPixelDigisDM")
00023 
00024         process.ecalPreshowerRecHit.ESdigiCollection = cms.InputTag(module_name,"ESDigiCollectionDM",process_name)
00025         process.ecalGlobalUncalibRecHit.EBdigiCollection = cms.InputTag(module_name,"EBDigiCollectionDM",process_name)
00026         process.ecalGlobalUncalibRecHit.EEdigiCollection =  cms.InputTag(module_name,"EEDigiCollectionDM",process_name)
00027 
00028         #process.ecalDetIdToBeRecovered.ebSrFlagCollection=cms.InputTag(module_name)
00029         #process.ecalDetIdToBeRecovered.eeSrFlagCollection=cms.InputTag(module_name)    
00030         
00031         process.hcalnoise.digiCollName = cms.InputTag(module_name,"HBHEDigiCollectionDM")
00032 
00033         process.hbhereco.digiLabel = cms.InputTag(module_name,"HBHEDigiCollectionDM")
00034         process.hfreco.digiLabel = cms.InputTag(module_name,"HFDigiCollectionDM")
00035         process.horeco.digiLabel = cms.InputTag(module_name,"HODigiCollectionDM")
00036         process.zdcreco.digiLabel = cms.InputTag(module_name,"ZDCDigiCollectionDM")
00037         
00038         process.siStripZeroSuppression.RawDigiProducersList = cms.VInputTag()
00039         process.MeasurementTracker.inactiveStripDetectorLabels = cms.VInputTag()
00040         process.newMeasurementTracker.inactiveStripDetectorLabels = cms.VInputTag()
00041         process.fourthMeasurementTracker.inactiveStripDetectorLabels = cms.VInputTag()
00042         process.secMeasurementTracker.inactiveStripDetectorLabels = cms.VInputTag()
00043         process.fifthMeasurementTracker.inactiveStripDetectorLabels = cms.VInputTag()
00044         process.thMeasurementTracker.inactiveStripDetectorLabels = cms.VInputTag()
00045         process.load('Configuration/StandardSequences/Generator_cff')
00046         process.genParticles.abortOnUnknownPDGCode = False
00047         process.generation_step = cms.Path(cms.SequencePlaceholder("randomEngineStateProducer")+process.GeneInfo+process.genJetMET) # process.GeneInfo
00048         process.schedule.insert(0,process.generation_step)
00049 
00050         if runOnTheGrid:
00051                 process.source.fileNames=cms.untracked.vstring(__FILE_NAMES__)
00052                 process.source.skipEvents=cms.untracked.uint32(__SKIP_EVENTS__)
00053                 process.maxEvents.input = cms.untracked.int32(__MAX_EVENTS__)
00054                 process.output.fileName = cms.untracked.string("output.root")
00055         
00056         process.siStripClusters.DigiProducersList = cms.VInputTag(
00057                 cms.InputTag(module_name,"siStripDigisZSDM"),
00058                 cms.InputTag(module_name,"siStripDigisVRDM"),
00059                 cms.InputTag(module_name,"siStripDigisPRDM"),
00060                 cms.InputTag(module_name,"siStripDigisSMDM")
00061         )
00062                 
00063         print process.dumpPython()  
00064         process.output.outputCommands = cms.untracked.vstring("keep *_*_*_*")
00065                                   
00066         return (process)        
00067 
00068 
00069 

Variable Documentation

24_customise_reconstruct_overlay_event::runOnTheGrid = False

Definition at line 4 of file 24_customise_reconstruct_overlay_event.py.

24_customise_reconstruct_overlay_event::runOnTheIC1 = False

Definition at line 5 of file 24_customise_reconstruct_overlay_event.py.