Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-20 03:45:01

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def PPSAssociationCutsESSource(*args, **kwargs):
0004   mod = cms.ESSource('PPSAssociationCutsESSource',
0005     ppsAssociationCutsLabel = cms.string(''),
0006     configuration = cms.VPSet(
0007       template = cms.PSetTemplate(
0008         validityRange = cms.EventRange('0:18446744073709551615-0:18446744073709551615'),
0009         association_cuts_45 = cms.PSet(
0010           x_cut_mean = cms.string(''),
0011           x_cut_threshold = cms.string(''),
0012           y_cut_mean = cms.string(''),
0013           y_cut_threshold = cms.string(''),
0014           xi_cut_mean = cms.string(''),
0015           xi_cut_threshold = cms.string(''),
0016           th_y_cut_mean = cms.string(''),
0017           th_y_cut_threshold = cms.string(''),
0018           ti_tr_min = cms.double(-1),
0019           ti_tr_max = cms.double(1)
0020         ),
0021         association_cuts_56 = cms.PSet(
0022           x_cut_mean = cms.string(''),
0023           x_cut_threshold = cms.string(''),
0024           y_cut_mean = cms.string(''),
0025           y_cut_threshold = cms.string(''),
0026           xi_cut_mean = cms.string(''),
0027           xi_cut_threshold = cms.string(''),
0028           th_y_cut_mean = cms.string(''),
0029           th_y_cut_threshold = cms.string(''),
0030           ti_tr_min = cms.double(-1),
0031           ti_tr_max = cms.double(1)
0032         )
0033       )
0034     ),
0035     appendToDataLabel = cms.string('')
0036   )
0037   for a in args:
0038     mod.update_(a)
0039   mod.update_(kwargs)
0040   return mod