CMS 3D CMS Logo

gtDigis_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 gtDigis = cms.EDProducer("L1GlobalTrigger",
00004     
00005     # input tag for GMT readout collection: 
00006     #     gmtDigis = GMT emulator
00007     #     l1GtUnpack     = GT unpacker (common GT/GMT unpacker)
00008     GmtInputTag = cms.InputTag("gmtDigis"),
00009     
00010     # input tag for GCT readout collections: 
00011     #     gctDigis = GCT emulator 
00012     #     l1GctUnpack    = GCT unpacker 
00013     GctInputTag = cms.InputTag("gctDigis"),
00014     
00015     # input tag for CASTOR record 
00016     #     castorL1Digis =  CASTOR
00017     CastorInputTag = cms.InputTag("castorL1Digis"),
00018     
00019     # technical triggers: a vector of input tags, one tag per each technical 
00020     # trigger producer 
00021     # 
00022     # by default: empty vector
00023     
00024     # Example:
00025     # TechnicalTriggersInputTags = cms.VInputTag(cms.InputTag('aTechTrigDigis'), 
00026     #                                            cms.InputTag('anotherTechTriggerDigis')),
00027     TechnicalTriggersInputTags = cms.VInputTag(),
00028     
00029     # logical flag to produce the L1 GT DAQ readout record
00030     #     if true, produce the record
00031     ProduceL1GtDaqRecord = cms.bool(True),
00032     
00033     # logical flag to produce the L1 GT EVM readout record
00034     #     if true, produce the record
00035     ProduceL1GtEvmRecord = cms.bool(True),
00036     
00037     # logical flag to produce the L1 GT object map record
00038     #     if true, produce the record
00039     ProduceL1GtObjectMapRecord = cms.bool(True),
00040     
00041     # logical flag to write the PSB content in the  L1 GT DAQ record
00042     #     if true, write the PSB content in the record
00043     WritePsbL1GtDaqRecord = cms.bool(True),
00044     
00045     # logical flag to read the technical trigger records
00046     #     if true, it will read via getMany the available records
00047     ReadTechnicalTriggerRecords = cms.bool(True),
00048     
00049     # number of "bunch crossing in the event" (BxInEvent) to be emulated
00050     # symmetric around L1Accept (BxInEvent = 0):
00051     #    1 (BxInEvent = 0); 3 (F 0 1) (standard record); 5 (E F 0 1 2) (debug record)
00052     # even numbers (except 0) "rounded" to the nearest lower odd number
00053     # negative value: emulate TotalBxInEvent as given in EventSetup  
00054     EmulateBxInEvent = cms.int32(3),   
00055     
00056     # length of BST record (in bytes) from parameter set
00057     # negative value: take the value from EventSetup      
00058     BstLengthBytes = cms.int32(-1)
00059     
00060 )
00061 
00062 

Generated on Tue Jun 9 17:40:13 2009 for CMSSW by  doxygen 1.5.4