CA component for MenuSequence sequence
Definition at line 844 of file MenuComponents.py.
◆ __init__()
def MenuComponents.SelectionCA.__init__ |
( |
|
self, |
|
|
|
name, |
|
|
|
isProbe = False |
|
) |
| |
Definition at line 846 of file MenuComponents.py.
846 def __init__(self, name, isProbe=False):
847 self.name = name+
"_probe" if isProbe
else name
849 super( SelectionCA, self ).
__init__()
851 self.stepViewSequence =
seqAND(self.name)
◆ addHypoAlgo()
def MenuComponents.SelectionCA.addHypoAlgo |
( |
|
self, |
|
|
|
algo |
|
) |
| |
To be used when the hypo alg configuration does not require auxiliary tools/services
Definition at line 874 of file MenuComponents.py.
874 def addHypoAlgo(self, algo):
875 """To be used when the hypo alg configuration does not require auxiliary tools/services"""
877 newname = algo.getName()+
'_probe'
879 self.hypoAcc.addEventAlgo(algo)
◆ hypo()
def MenuComponents.SelectionCA.hypo |
( |
|
self | ) |
|
Access hypo algo (or throws)
Definition at line 881 of file MenuComponents.py.
882 """Access hypo algo (or throws)"""
884 assert h
is not None,
"No hypo in SeelectionCA {}".
format(self.name)
◆ inputMaker()
def MenuComponents.SelectionCA.inputMaker |
( |
|
self | ) |
|
Access Input Maker (or throws)
Definition at line 887 of file MenuComponents.py.
887 def inputMaker(self):
888 """Access Input Maker (or throws)"""
890 assert im
is not None,
"No input maker in SeelectionCA {}".
format(self.name)
◆ mergeHypo()
def MenuComponents.SelectionCA.mergeHypo |
( |
|
self, |
|
|
|
other |
|
) |
| |
To be used when the hypo alg configuration comes with auxiliary tools/services
Definition at line 870 of file MenuComponents.py.
870 def mergeHypo(self, other):
871 """To be used when the hypo alg configuration comes with auxiliary tools/services"""
872 self.hypoAcc.
merge(other)
◆ mergeReco()
def MenuComponents.SelectionCA.mergeReco |
( |
|
self, |
|
|
|
recoCA, |
|
|
|
robPrefetchCA = None , |
|
|
|
upSequenceCA = None |
|
) |
| |
upSequenceCA is the user CA to run before the recoCA
Definition at line 858 of file MenuComponents.py.
858 def mergeReco(self, recoCA, robPrefetchCA=None, upSequenceCA=None):
859 ''' upSequenceCA is the user CA to run before the recoCA'''
861 ca.addSequence(self.stepViewSequence)
863 ca.merge(upSequenceCA, sequenceName=self.stepViewSequence.name)
864 ca.addEventAlgo(recoCA.inputMaker(), sequenceName=self.stepViewSequence.name)
866 ca.merge(robPrefetchCA, self.stepViewSequence.name)
867 ca.merge(recoCA, sequenceName=self.stepViewSequence.name)
◆ topSequence()
def MenuComponents.SelectionCA.topSequence |
( |
|
self | ) |
|
◆ wasMerged()
def MenuComponents.SelectionCA.wasMerged |
( |
|
self | ) |
|
Definition at line 854 of file MenuComponents.py.
855 super( SelectionCA, self ).wasMerged()
856 self.hypoAcc.wasMerged()
◆ hypoAcc
MenuComponents.SelectionCA.hypoAcc |
◆ isProbe
MenuComponents.SelectionCA.isProbe |
◆ name
MenuComponents.SelectionCA.name |
◆ stepViewSequence
MenuComponents.SelectionCA.stepViewSequence |
The documentation for this class was generated from the following file: