Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:45:11

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 ppsFilteredProtonProducer = cms.EDProducer('PPSFilteredProtonProducer',
0004   verbosity = cms.untracked.bool(False),
0005   tracks_all = cms.PSet(
0006     local_angle_x_max = cms.double(0.02),
0007     local_angle_y_max = cms.double(0.02)
0008   ),
0009   tracks_pixel = cms.PSet(
0010     forbidden_RecoInfo_values = cms.vuint32(
0011       1,
0012       3
0013     ),
0014     number_of_hits_min = cms.uint32(0),
0015     normalised_chi_sq_max = cms.double(1e+100)
0016   ),
0017   protons_single_rp = cms.PSet(
0018     include = cms.bool(True),
0019     input_tag = cms.InputTag('ctppsProtons', 'singleRP'),
0020     output_label = cms.string('singleRP')
0021   ),
0022   protons_multi_rp = cms.PSet(
0023     include = cms.bool(True),
0024     input_tag = cms.InputTag('ctppsProtons', 'multiRP'),
0025     output_label = cms.string('multiRP'),
0026     check_valid_fit = cms.bool(True),
0027     chi_sq_max = cms.double(0.0001),
0028     normalised_chi_sq_max = cms.double(1e+100)
0029   ),
0030   mightGet = cms.optional.untracked.vstring
0031 )