CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GlobalMixedSeedProducer_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 import FastSimulation.Tracking.TrajectorySeedProducer_cfi
4 globalMixedSeeds = FastSimulation.Tracking.TrajectorySeedProducer_cfi.trajectorySeedProducer.clone()
5 #globalMixedSeeds.firstHitSubDetectorNumber = [3]
6 #globalMixedSeeds.firstHitSubDetectors = [1, 2, 6]
7 #globalMixedSeeds.secondHitSubDetectorNumber = [3]
8 #globalMixedSeeds.secondHitSubDetectors = [1, 2, 6]
9 
10 #a stripped translation of the old syntax above
11 globalMixedSeeds.layerList = cms.vstring(
12  'BPix1+BPix2'
13  'BPix1+FPix1_pos',
14  'BPix1+FPix1_neg',
15  'BPix2+FPix1_pos',
16  'BPix2+FPix1_neg',
17 
18  'FPix1_pos+FPix2_pos',
19  'FPix1_neg+FPix2_neg',
20 
21  'FPix1_pos+TEC1_pos',
22  'FPix1_neg+TEC2_neg',
23 
24  'FPix2_pos+TEC1_pos',
25  'FPix2_neg+TEC2_neg',
26 )
27 
28