ATLAS Offline Software
ExampleConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
2 
3 
4 from GoodRunsLists.GoodRunsListConfig import GoodRunsListConfig
5 
6 class ExampleConfig(GoodRunsListConfig):
7  def __init__(self):
8  GoodRunsListConfig.__init__(self)
9 
10 
11  self.name = "ExampleConfig"
12  self.listname = "ExampleConfig.xml"
13 
14 
16 
17 
20 
21 
22 
23  dqflagsquery = [ 'em LBSUMM g',
24  'pix LBSUMM g',
25  'tile LBSUMM g',
26  ]
27 
28 
29  self.querydict['dq'] = dqflagsquery
30 
python.ExampleConfig.ExampleConfig.listname
listname
Definition: ExampleConfig.py:12
python.ExampleConfig.ExampleConfig
Definition: ExampleConfig.py:6
python.ExampleConfig.ExampleConfig.name
name
name in GRLB object, and below the xml filename
Definition: ExampleConfig.py:11
python.ExampleConfig.ExampleConfig.__init__
def __init__(self)
Definition: ExampleConfig.py:7