ATLAS Offline Software
Loading...
Searching...
No Matches
TileCellBuilderTestConfig Namespace Reference

Classes

class  TileFragHash
class  PrepareDataAlg
class  TestAlg

Functions

 add_pedestal (offs_addr, offs)
 exp_merge (base, d)
 filter_e (base, thresh)
 TileBadChannelsCfg (flags, badChannels, chans=[], lines='')
 maketool (name, badChannels, **kw)
 TileRawChannelBuilderTestCfg (flags)

Variables

list hits_0
dict exp_cells_0
dict exp_mbts_0
dict exp_e4_0
 hits_1 = add_pedestal ((3, 1, 18, 15, 3, 0, 1), 10000)
 exp_cells_1
 hits_2 = add_pedestal ((3, 1, 18, 15, 3, 0, 1), 20000)
 exp_cells_2
 exp_cells_3
 exp_mbts_3
 exp_cells_4
 exp_cells_5
 exp_cells_6 = filter_e (exp_cells_0, 300)
 exp_cells_7
 exp_mbts_7
 exp_cells_8
 exp_cells_10
dict baddefs = {}
list BAD_LOW = [1<<1, 0, 0]
list BAD_HIGH = [ 0, 1<<1, 0]
list BAD_BOTH = [ 0, 0, 1<<1]
list BADTIMING = [ 0, 0, 1<<9]
str badChannelsLines
 flags = initConfigFlags()
 Files
 ConditionsRunNumber
 OverrideRunNumber
 GlobalTag
 RunType
 MaxEvents
 cfg = MainServicesCfg(flags)
 withDetails
 sc = cfg.run()

Function Documentation

◆ add_pedestal()

TileCellBuilderTestConfig.add_pedestal ( offs_addr,
offs )

Definition at line 79 of file TileCellBuilderTestConfig.py.

79def add_pedestal (offs_addr, offs):
80 out = []
81 for icoll, colldata in hits_0:
82 colldata_out = []
83 for addr, data in colldata:
84 if addr == offs_addr:
85 data = data[:]
86 data[3] += offs
87 colldata_out.append ([addr, data])
88 out.append ([icoll, colldata_out])
89 return out
90
91

◆ exp_merge()

TileCellBuilderTestConfig.exp_merge ( base,
d )

Definition at line 131 of file TileCellBuilderTestConfig.py.

131def exp_merge (base, d):
132 new = base.copy()
133 new.update (d)
134 return new
135
136
137# Underflow.

◆ filter_e()

TileCellBuilderTestConfig.filter_e ( base,
thresh )

Definition at line 180 of file TileCellBuilderTestConfig.py.

180def filter_e (base, thresh):
181 out = {}
182 for addr, l in base.items():
183 if l[0] >= thresh or l[1] >= thresh:
184 out[addr] = l
185 return out
186
187# EThreshold

◆ maketool()

TileCellBuilderTestConfig.maketool ( name,
badChannels,
** kw )

Definition at line 628 of file TileCellBuilderTestConfig.py.

628def maketool (name, badChannels, **kw):
629 TileCellBuilder = CompFactory.TileCellBuilder
630 return TileCellBuilder(name, TileBadChannels=badChannels, **kw)
631
632
This class creates Cells from RawChannels and stores them in a container.

◆ TileBadChannelsCfg()

TileCellBuilderTestConfig.TileBadChannelsCfg ( flags,
badChannels,
chans = [],
lines = '' )
chans: [(sec, side, mod, tow, samp, pmt), [DATA0, DATA1, DATA2]]
We'd like to specify cells using offline addressing, but the bad cell
file uses online addressing.  We can convert, but that requires
idhelpers, etc, that aren't available until after initialization.
So we pass in both representations; in finalize(), we'll check
that they match and print out the correct bad cell lines
if they do not.

  File data line format:
   frag channel dummy adcStatus0 adcStatus1 chnStatus
   chnStatus + adcStatusN are given to TileBchDecoder.
   Offline problem masks:
          chn                         adc
    0     GeneralMaskChannel          GeneralMaskAdc
    1     NoPmt                       AdcDead
    2     NoHV                        StuckBit
    3     WrongHV                     DataCorruption
    4     NoLaser                     VeryLargeHfNoise
    5     BadLaser                    NoData
    6     NoCesium                    WrongDspConfig
    7     BadCesium                   LargeHfNoise
    8     NoTiming                    CorrelatedNoise
    9     BadTiming                   LargeLfNoise
   10     TrigGeneralMask             NoCis
   11     TrigNoGain                  BadCis
   12     TrigHalfGain                SevereStuckBit
   13     TrigNoisy                   SevereDataCorruption
   14     Emergency                   IgnoredByDQV
   15     HVReadoutPb
   16     BrokenClearFibre
   17     IgnoreCs
   18     UnstableCs


   Online problem masks:
          chn                         adc
    0     IgnoredInDsp                OnlineGeneralMaskAdc
    1     IgnoredInHlt
    2     DisableForL1
    3     TrigGeneralMask
    4     TrigNoGain
    5     TrigHalfGain
    6     TrigNoisy
    7     OnlineBadTiming

Definition at line 541 of file TileCellBuilderTestConfig.py.

541def TileBadChannelsCfg(flags, badChannels, chans=[], lines=''):
542
543 """
544
545 chans: [(sec, side, mod, tow, samp, pmt), [DATA0, DATA1, DATA2]]
546 We'd like to specify cells using offline addressing, but the bad cell
547 file uses online addressing. We can convert, but that requires
548 idhelpers, etc, that aren't available until after initialization.
549 So we pass in both representations; in finalize(), we'll check
550 that they match and print out the correct bad cell lines
551 if they do not.
552
553 File data line format:
554 frag channel dummy adcStatus0 adcStatus1 chnStatus
555 chnStatus + adcStatusN are given to TileBchDecoder.
556 Offline problem masks:
557 chn adc
558 0 GeneralMaskChannel GeneralMaskAdc
559 1 NoPmt AdcDead
560 2 NoHV StuckBit
561 3 WrongHV DataCorruption
562 4 NoLaser VeryLargeHfNoise
563 5 BadLaser NoData
564 6 NoCesium WrongDspConfig
565 7 BadCesium LargeHfNoise
566 8 NoTiming CorrelatedNoise
567 9 BadTiming LargeLfNoise
568 10 TrigGeneralMask NoCis
569 11 TrigNoGain BadCis
570 12 TrigHalfGain SevereStuckBit
571 13 TrigNoisy SevereDataCorruption
572 14 Emergency IgnoredByDQV
573 15 HVReadoutPb
574 16 BrokenClearFibre
575 17 IgnoreCs
576 18 UnstableCs
577
578
579 Online problem masks:
580 chn adc
581 0 IgnoredInDsp OnlineGeneralMaskAdc
582 1 IgnoredInHlt
583 2 DisableForL1
584 3 TrigGeneralMask
585 4 TrigNoGain
586 5 TrigHalfGain
587 6 TrigNoisy
588 7 OnlineBadTiming
589 """
590
591 if not chans:
592 TileBchList = 'TileNoBad.oflBch'
593 else:
594 TileBchList = badChannels + '.bch'
595 f = open (TileBchList, 'w')
596 print ('OBJVERSION 0', file=f)
597 print ('0x000 0 0 0 0 0', file=f)
598 f.write (lines)
599 f.close()
600 baddefs[badChannels] = (chans, lines)
601
602
603 TileCondProxyFileBch = CompFactory.getComp("TileCondProxyFile<TileCalibDrawerBch>")
604 onlineBadChannelsProxy = TileCondProxyFileBch('TileCondProxyFile_OnlBch', Source=TileBchList)
605 offlineBadChannelsProxy = TileCondProxyFileBch('TileCondProxyFile_OflBch', Source='TileNoBad.oflBch')
606
607 TileBadChannelsCondAlg = CompFactory.TileBadChannelsCondAlg
608 badChannelsCondAlg = TileBadChannelsCondAlg(name=f'{badChannels}_CondAlg',
609 OnlBchProxy=onlineBadChannelsProxy,
610 OflBchProxy=offlineBadChannelsProxy,
611 TileBadChannels=badChannels)
612
613 acc = ComponentAccumulator()
614 acc.addCondAlgo(badChannelsCondAlg)
615
616 return acc
617
618
Condition algorithm to prepare TileBadChannels and put it into condition store.

◆ TileRawChannelBuilderTestCfg()

TileCellBuilderTestConfig.TileRawChannelBuilderTestCfg ( flags)

Definition at line 633 of file TileCellBuilderTestConfig.py.

633def TileRawChannelBuilderTestCfg(flags):
634
635 acc = ComponentAccumulator()
636
637 from TileGeoModel.TileGMConfig import TileGMCfg
638 acc.merge( TileGMCfg(flags) )
639
640 from LArGeoAlgsNV.LArGMConfig import LArGMCfg
641 acc.merge(LArGMCfg(flags))
642
643 from TileConditions.TileCablingSvcConfig import TileCablingSvcCfg
644 acc.merge( TileCablingSvcCfg(flags) )
645
646 from TileConditions.TileInfoLoaderConfig import TileInfoLoaderCfg
647 acc.merge( TileInfoLoaderCfg(flags) )
648
649 from TileConditions.TileEMScaleConfig import TileEMScaleCondAlgCfg
650 acc.merge( TileEMScaleCondAlgCfg(flags) )
651
652 from TileConditions.TileTimingConfig import TileTimingCondAlgCfg
653 acc.merge( TileTimingCondAlgCfg(flags) )
654
655 from TileConditions.TileSampleNoiseConfig import TileSampleNoiseCondAlgCfg
656 acc.merge( TileSampleNoiseCondAlgCfg(flags) )
657
658 bc1 = 'tilecellbuilder_bc1'
659 acc.merge( TileBadChannelsCfg(flags, bc1) )
660
661 bc2 = 'tilecellbuilder_bc2'
662 acc.merge( TileBadChannelsCfg(flags, bc2,
663 [[(3, 1, 18, 8, 2, 0), BAD_HIGH],
664 [(2, 1, 18, 9, 1, 0), BAD_LOW],
665 [(2, 1, 18, 12, 0, 1), BAD_BOTH],
666 [(2, 1, 18, 11, 0, 0), BADTIMING],
667 [(4, 1, 0, 1, 0, 0), BAD_BOTH],
668 [(4, 1, 6, 1, 0, 0), BADTIMING],
669 ], badChannelsLines) )
670
671
672 TileRawChannelNoiseFilter = CompFactory.TileRawChannelNoiseFilter
673 noisefilter = TileRawChannelNoiseFilter('noisefilter')
674
675 acc.addPublicTool( maketool ('tool1', bc1) )
676 acc.addPublicTool( maketool ('tool2', bc2) )
677 acc.addPublicTool( maketool ('tool5', bc1, fakeCrackCells=True) )
678 acc.addPublicTool( maketool ('tool6', bc1, EThreshold=300) )
679 acc.addPublicTool( maketool ('tool7', bc1, correctAmplitude=True, correctTime=True) )
680 acc.addPublicTool( maketool ('tool8', bc1, NoiseFilterTools=[noisefilter]) )
681 acc.addPublicTool( maketool ('tool9', bc1, TileDSPRawChannelContainer='TileRawChannelCntDsp') )
682 acc.addPublicTool( maketool ('tool10', bc1, TileDSPRawChannelContainer = 'TileRawChannelCntDsp',
683 correctTime=True, correctAmplitude=True) )
684 acc.addPublicTool( maketool ('tool11', bc1, TileDSPRawChannelContainer='TileRawChannelCntDsp',
685 NoiseFilterTools=[noisefilter]) )
686
687 acc.addEventAlgo( PrepareDataAlg('prepalg1') )
688 prepalg1 = acc.getEventAlgo('prepalg1')
689
690 from TileRecUtils.TileDQstatusConfig import TileDQstatusAlgCfg
691 acc.merge(TileDQstatusAlgCfg(flags, name='dqstat1',
692 TileRawChannelContainer='TRCDQ',
693 TileDigitsContainer=''))
694
695
696 acc.addEventAlgo( TestAlg('testalg1', prepalg1) )
697
698 return acc
699
700
701
This tool subtracts common-mode noise from all TileRawChannels in one container.

Variable Documentation

◆ BAD_BOTH

list TileCellBuilderTestConfig.BAD_BOTH = [ 0, 0, 1<<1]

Definition at line 538 of file TileCellBuilderTestConfig.py.

◆ BAD_HIGH

list TileCellBuilderTestConfig.BAD_HIGH = [ 0, 1<<1, 0]

Definition at line 537 of file TileCellBuilderTestConfig.py.

◆ BAD_LOW

list TileCellBuilderTestConfig.BAD_LOW = [1<<1, 0, 0]

Definition at line 536 of file TileCellBuilderTestConfig.py.

◆ badChannelsLines

str TileCellBuilderTestConfig.badChannelsLines
Initial value:
1= """
20x312 2 0 0 2 0
30x312 4 0 2 0 0
40x312 11 0 0 0 2
50x312 6 0 0 0 512
60x307 12 0 0 0 2
70x335 12 0 0 0 512
8"""

Definition at line 619 of file TileCellBuilderTestConfig.py.

◆ baddefs

dict TileCellBuilderTestConfig.baddefs = {}

Definition at line 535 of file TileCellBuilderTestConfig.py.

◆ BADTIMING

list TileCellBuilderTestConfig.BADTIMING = [ 0, 0, 1<<9]

Definition at line 539 of file TileCellBuilderTestConfig.py.

◆ cfg

TileCellBuilderTestConfig.cfg = MainServicesCfg(flags)

Definition at line 724 of file TileCellBuilderTestConfig.py.

◆ ConditionsRunNumber

TileCellBuilderTestConfig.ConditionsRunNumber

Definition at line 714 of file TileCellBuilderTestConfig.py.

◆ exp_cells_0

dict TileCellBuilderTestConfig.exp_cells_0
Initial value:
1= {
2 (1, 1, 0, 1, 0) : [-10.4734, -10.4734, -13.3, -13.3, 1, 1, 130, 138, 1, 1],
3 (1, 1, 0, 1, 1) : [ 2.3274, -4.6548, 22.1, 75.0, 2, 2, 130, 130, 1, 1],
4 (1, 1, 0, 2, 0) : [356.0956, 486.4312, -0.4, 0.1, 2, 2, 162, 162, 1, 1],
5 (1, 1, 0, 2, 1) : [ 39.5662, 16.2920, 3.5, 12.9, 1, 4, 162, 130, 1, 1],
6
7 (2, 1, 18, 10, 1):[620.25793, 745.93872, 1.3, 1.0, 3, 3, 162, 162, 1, 1],
8 (2, 1, 18, 10, 2):[ 3.49113, 1.16371, 75.0, -75.0, 2, 3, 130, 130, 1, 1],
9 (2, 1, 18, 11, 0):[101.24284, 73.31380, 0.4, 1.9, 2, 1, 162, 162, 1, 1],
10 (2, 1, 18, 11, 1):[448.02869, 559.74500, 0.5, 0.3, 1, 1, 162, 162, 1, 1],
11 (2, 1, 18, 12, 0):[ -2.32742, 5.81855,-75.0, -32.7, 2, 1, 130, 130, 1, 1],
12 (3, 1, 18, 8, 2):[ -0.96976, 33.94157, 75.0, -11.9, 4, 2, 130, 130, 1, 1],
13 (3, 1, 18, 9, 1):[ 7.75807, 0.96976,-17.6, -75.0, 1, 3, 130, 130, 1, 1],
14 (3, 1, 18, 10, 3):[ 41.89359, 0.0, 7.7, 7.7, 8, 0, 162, 0, 1,-1],
15 (3, 1, 18, 11, 3):[379.36975, 0.0, 0.4, 0.4, 4, 0, 162, 0, 1,-1],
16 (3, 1, 18, 13, 3):[ 34.13552, 0.0, -26.5, -26.5,23, 0, 130, 0, 1,-1],
17 (3, 1, 18, 15, 3):[ -0.77581, 0.0, -75.0, -75.0, 3, 0, 130, 0, 1, -1],
18
19 # coll 136
20 (3, 1, 8, 13, 3) : [208.6922, 0.0, 4.8, 4.8, 5, 0, 162, 0, 1, -1],
21}

Definition at line 92 of file TileCellBuilderTestConfig.py.

◆ exp_cells_1

TileCellBuilderTestConfig.exp_cells_1
Initial value:
1= exp_merge (exp_cells_0, {
2 (3, 1, 18, 15, 3) : [-0.7758, 0.0, -75.0, -75.0, 3, 0, 146, 0, 1, -1],
3})

Definition at line 139 of file TileCellBuilderTestConfig.py.

◆ exp_cells_10

TileCellBuilderTestConfig.exp_cells_10
Initial value:
1= exp_merge (exp_cells_7, {
2 (1, 1, 0, 2, 0) : [356.1227, 486.4159, -0.4, 0.1, 2, 2, 162, 162, 1, 1],
3})

Definition at line 217 of file TileCellBuilderTestConfig.py.

◆ exp_cells_2

TileCellBuilderTestConfig.exp_cells_2
Initial value:
1= exp_merge (exp_cells_0, {
2 (3, 1, 18, 15, 3) : [-0.7758, 0.0, -75.0, -75.0, 3, 0, 146, 0, 1, -1],
3})

Definition at line 145 of file TileCellBuilderTestConfig.py.

◆ exp_cells_3

TileCellBuilderTestConfig.exp_cells_3
Initial value:
1= exp_merge (exp_cells_0, {
2 (3, 1, 18, 8, 2) : [ 33.9416, 33.9416, -11.9, -11.9, 2, 2, 138, 130, 1, 1],
3 (2, 1, 18, 11, 0) : [101.2428, 73.3138, 1.9, 1.9, 2, 1, 34, 162, 1, 1],
4 (2, 1, 18, 12, 0) : [ -2.3274, -2.3274, -75.0, -75.0, 2, 2, 130, 138, 1, 1],
5})

Definition at line 150 of file TileCellBuilderTestConfig.py.

◆ exp_cells_4

TileCellBuilderTestConfig.exp_cells_4
Initial value:
1= exp_merge (exp_cells_0, {
2 (2, 1, 18, 10, 1):[620.2579,620.2579, 1.3, 1.3, 3, 3, 161, 169, 1, 1],
3 (2, 1, 18, 12, 0):[ 0.5, 0.5, 0.0, 0.0, 255, 255, 9, 9, 1, 1],
4 (3, 1, 18, 8, 2):[ 33.9416, 33.9416,-11.9,-11.9, 2, 2, 137, 129, 1, 1],
5 (3, 1, 18, 13, 3):[ 0.5, 0.0, 0.0, 0.0, 255, 0, 9, 8, 1,-1],
6 (3, 1, 18, 15, 3):[ 0.5, 0.0, 0.0, 0.0, 255, 0, 9, 8, 1,-1],
7})

Definition at line 161 of file TileCellBuilderTestConfig.py.

◆ exp_cells_5

TileCellBuilderTestConfig.exp_cells_5
Initial value:
1= exp_merge (exp_cells_0, {
2 (3, 1, 8, 8, 2) : [0.0, 0.0, 0.0, 0.0, 0, 0, 0, 0, 0, 0],
3 (3, 1, 8, 9, 1) : [0.0, 0.0, 0.0, 0.0, 0, 0, 0, 0, 0, 0],
4 (3, 1, 8, 10, 3) : [0.0, 0.0, 0.0, 0.0, 0, 0, 8, 8, 0, -1],
5 (3, 1, 8, 11, 3) : [0.0, 0.0, 0.0, 0.0, 0, 0, 8, 8, 0, -1],
6 (3, 1, 8, 15, 3) : [0.0, 0.0, 0.0, 0.0, 0, 0, 8, 8, 0, -1],
7})

Definition at line 171 of file TileCellBuilderTestConfig.py.

◆ exp_cells_6

TileCellBuilderTestConfig.exp_cells_6 = filter_e (exp_cells_0, 300)

Definition at line 188 of file TileCellBuilderTestConfig.py.

◆ exp_cells_7

TileCellBuilderTestConfig.exp_cells_7
Initial value:
1= exp_merge (exp_cells_0, {
2 (1, 1, 0, 2, 0) : [356.1491, 486.4361, -0.4, 0.1, 2, 2, 162, 162, 1, 1],
3 (2, 1, 18, 10, 1) : [621.3283, 746.7004, 1.3, 1.0, 3, 3, 162, 162, 1, 1],
4 (2, 1, 18, 11, 1) : [448.1431, 559.7963, 0.5, 0.3, 1, 1, 162, 162, 1, 1],
5 (3, 1, 8, 13, 3) : [213.6019, 0.0, 4.8, 4.8, 5, 0, 162, 0, 1,-1],
6 (3, 1, 18, 11, 3) : [379.4317, 0.0, 0.4, 0.4, 4, 0, 162, 0, 1,-1],
7})

Definition at line 193 of file TileCellBuilderTestConfig.py.

◆ exp_cells_8

TileCellBuilderTestConfig.exp_cells_8
Initial value:
1= exp_merge (exp_cells_0, {
2 (1, 1, 0, 1, 0) : [-11.3462, -11.3462, -13.3, -13.3, 1, 1, 130, 138, 1, 1],
3 (1, 1, 0, 1, 1) : [ 1.4546, -5.5276, 22.1, 75.0, 2, 2, 130, 130, 1, 1],
4 (1, 1, 0, 2, 0) : [355.2228, 485.5583, -0.4, 0.1, 2, 2, 162, 162, 1, 1],
5 (1, 1, 0, 2, 1) : [ 39.5662, 15.4192, 3.5, 12.9, 1, 4, 162, 130, 1, 1],
6})

Definition at line 208 of file TileCellBuilderTestConfig.py.

◆ exp_e4_0

dict TileCellBuilderTestConfig.exp_e4_0
Initial value:
1= {
2 (4, -1, 0, 2, 0) : [17.84357, 0.0, 3.2, 3.2, 2, 0, 130, 0, 1, -1],
3 (4, -1, 1, 2, 0) : [24.05003, 0.0, -5.3, -5.3, 2, 0, 130, 0, 1, -1],
4 (4, -1, 2, 2, 0) : [-3.10323, 0.0, 27.6, 27.6, 1, 0, 130, 0, 1, -1],
5 (4, -1, 3, 2, 0) : [1.551615, 0.0, -75.0, -75.0, 2, 0, 130, 0, 1, -1],
6}

Definition at line 123 of file TileCellBuilderTestConfig.py.

◆ exp_mbts_0

dict TileCellBuilderTestConfig.exp_mbts_0
Initial value:
1= {
2 (4, 1, 0, 1, 0) : [0.7221, 0.0, 2.8, 2.8, 6, 0, 162, 0, 1, -1],
3 (4, 1, 6, 1, 0) : [0.6891, 0.0, 1.2, 1.2, 2, 0, 162, 0, 1, -1],
4 (4, 1, 6, 0, 0) : [0.5486, 0.0, 0.5, 0.5, 1, 0, 162, 0, 1, -1],
5 (4, -1, 3, 0, 0) : [1.318, 0.0, 1.7, 1.7, 7, 0, 162, 0, 1, -1],
6}

Definition at line 115 of file TileCellBuilderTestConfig.py.

◆ exp_mbts_3

TileCellBuilderTestConfig.exp_mbts_3
Initial value:
1= exp_merge (exp_mbts_0, {
2 (4, 1, 0, 1, 0) : [ 0.0, 0.0, -100.0,-100.0,255,0, 10, 8, 1,-1],
3 (4, 1, 6, 1, 0) : [ 0.6891, 0.0, 0.0, 0.0, 2, 0, 34, 0, 1,-1],
4})

Definition at line 155 of file TileCellBuilderTestConfig.py.

◆ exp_mbts_7

TileCellBuilderTestConfig.exp_mbts_7
Initial value:
1= exp_merge (exp_mbts_0, {
2 (4, 1, 0, 1, 0) : [0.7279, 0.0, 2.8, 2.8, 6, 0, 162, 0, 1, -1],
3 (4, 1, 6, 1, 0) : [0.6902, 0.0, 1.2, 1.2, 2, 0, 162, 0, 1, -1],
4 (4, -1, 3, 0, 0) : [1.3223, 0.0, 1.7, 1.7, 7, 0, 162, 0, 1, -1],
5})

Definition at line 200 of file TileCellBuilderTestConfig.py.

◆ Files

TileCellBuilderTestConfig.Files

Definition at line 713 of file TileCellBuilderTestConfig.py.

◆ flags

TileCellBuilderTestConfig.flags = initConfigFlags()

Definition at line 712 of file TileCellBuilderTestConfig.py.

◆ GlobalTag

TileCellBuilderTestConfig.GlobalTag

Definition at line 716 of file TileCellBuilderTestConfig.py.

◆ hits_0

list TileCellBuilderTestConfig.hits_0

Definition at line 19 of file TileCellBuilderTestConfig.py.

◆ hits_1

TileCellBuilderTestConfig.hits_1 = add_pedestal ((3, 1, 18, 15, 3, 0, 1), 10000)

Definition at line 138 of file TileCellBuilderTestConfig.py.

◆ hits_2

TileCellBuilderTestConfig.hits_2 = add_pedestal ((3, 1, 18, 15, 3, 0, 1), 20000)

Definition at line 144 of file TileCellBuilderTestConfig.py.

◆ MaxEvents

TileCellBuilderTestConfig.MaxEvents

Definition at line 718 of file TileCellBuilderTestConfig.py.

◆ OverrideRunNumber

TileCellBuilderTestConfig.OverrideRunNumber

Definition at line 715 of file TileCellBuilderTestConfig.py.

◆ RunType

TileCellBuilderTestConfig.RunType

Definition at line 717 of file TileCellBuilderTestConfig.py.

◆ sc

TileCellBuilderTestConfig.sc = cfg.run()

Definition at line 739 of file TileCellBuilderTestConfig.py.

◆ withDetails

TileCellBuilderTestConfig.withDetails

Definition at line 736 of file TileCellBuilderTestConfig.py.