Definition at line 10 of file MetaDataMT.py.
◆ __init__()
| MetaDataMT.StoreMetaData.__init__ |
( |
| self, |
|
|
| threadID, |
|
|
| q ) |
Definition at line 12 of file MetaDataMT.py.
12 def __init__(self, threadID, q):
13
14 threading.Thread.__init__(self)
15 self.threadID = threadID
16 self.q = q
17
◆ process_data()
| MetaDataMT.StoreMetaData.process_data |
( |
| self, |
|
|
| entry ) |
Definition at line 25 of file MetaDataMT.py.
25 def process_data(self, entry):
26
27 inputList = entry[0]
28 outFile_meta = entry[1]
29 query_fields = entry[2]
30
31 cmd = "getMetadata.py --allowBadStatus --inDS="+inputList+" --outFile="+outFile_meta+" --delim=\";;;\" --fields="+query_fields
32
33 os.system(cmd)
◆ run()
| MetaDataMT.StoreMetaData.run |
( |
| self | ) |
|
Definition at line 18 of file MetaDataMT.py.
19 while True:
20
22 self.process_data(entry)
23 self.q.task_done()
24
T * get(TKey *tobj)
get a TObject* from a TKey* (why can't a TObject be a TKey?)
| MetaDataMT.StoreMetaData.q = q |
◆ threadID
| MetaDataMT.StoreMetaData.threadID = threadID |
The documentation for this class was generated from the following file: