CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GlobalPixelSeedProducer_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 import FastSimulation.Tracking.TrajectorySeedProducer_cfi
4 globalPixelSeeds = FastSimulation.Tracking.TrajectorySeedProducer_cfi.trajectorySeedProducer.clone()
5 #globalPixelSeeds.firstHitSubDetectorNumber = [2]
6 #globalPixelSeeds.firstHitSubDetectors = [1, 2]
7 #globalPixelSeeds.secondHitSubDetectorNumber = [2]
8 #globalPixelSeeds.secondHitSubDetectors = [1, 2]
9 
10 #a stripped translation of the old syntax above
11 globalPixelSeeds.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 
22