1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import FWCore.ParameterSet.Config as cms
from Geometry.HGCalCommonData.hgcalWaferIDTesterHEF_cfi import *
hgcalWaferIDTesterEE = hgcalWaferIDTesterHEF.clone(
nameSense = "HGCalEESensitive",
fileName = "cellIDEE.txt"
)
hgcalWaferIDShiftTesterEE = hgcalWaferIDTesterHEF.clone(
nameSense = "HGCalEESensitive",
fileName = "cellShift.txt",
shift = 1
)
hgcalWaferIDShiftTesterHEF = hgcalWaferIDTesterHEF.clone(
fileName = "cellShift.txt",
shift = 1
)
|