CMS 3D CMS Logo

HtrXmlPattern_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 htr_xml = cms.EDAnalyzer("HtrXmlPattern",
4  #for non-existent electronics.
5  presamples_per_event = cms.untracked.int32(4),
6  sets_to_show = cms.untracked.int32(0),
7 
8  single_XML_file = cms.untracked.bool(True),
9 
10  write_XML = cms.untracked.bool(True),
11 
12  #XML file (otherwise one file per channel).
13  file_tag = cms.untracked.string('example'),
14  #that is proportional to this number.
15  #For any negative number, dump all available data to stdout.
16  #Non-zero values are typically used for debugging.
17  show_errors = cms.untracked.bool(True),
18  samples_per_event = cms.untracked.int32(10),
19 
20  #(including pre-samples) per event.
21  write_root_file = cms.untracked.bool(True),
22  user_output_directory = cms.untracked.string('/tmp')
23 
24 )
25 
26