Public Member Functions | |
def | configure |
def | AlgHandle |
Returns a handle to the Atlfast::Isolator instance. | |
Private Attributes | |
_algHandle |
Supplies a handle if needed. StoreGate location of the Atlfast muon collection is given as input
Definition at line 13 of file MuonIsolatorGetter.py.
def python::MuonIsolatorGetter::Atlfast__MuonIsolatorGetter::configure | ( | self | ) |
Creates and configures Atlfast::Isolator instance. This is done via the genConf autogenerated getter class. StoreGate location of the Atlfast muon collection is given as input
Definition at line 19 of file MuonIsolatorGetter.py.
00019 : 00020 00021 try: 00022 from AtlfastAlgs.AtlfastAlgsConf import Atlfast__Isolator 00023 except Exception: 00024 mlog = logging.getLogger( 'Atlfast__MuonIsolatorGetter::configure:' ) 00025 mlog.error("could not import AtlfastAlgs.Atlfast__Isolator") 00026 print traceback.format_exc() 00027 return False 00028 00029 theMuonIsolator=Atlfast__Isolator("MuonIsolator") 00030 self._algHandle_algHandle = theMuonIsolator; 00031 00032 theMuonIsolator.InputLocation = "/Event/AtlfastMuons" 00033 theMuonIsolator.IsolatedOutputLocation = "/Event/AtlfastIsolatedMuons" 00034 theMuonIsolator.NonIsolatedOutputLocation = "/Event/AtlfastNonIsolatedMuons" 00035 theMuonIsolator.RClusterMatch = 0.0 00036 00037 return True 00038 ## Returns a handle to the Atlfast::Isolator instance.
def python::MuonIsolatorGetter::Atlfast__MuonIsolatorGetter::AlgHandle | ( | self | ) |
Returns a handle to the Atlfast::Isolator instance.
Definition at line 41 of file MuonIsolatorGetter.py.
00041 : 00042 return self._algHandle_algHandle return self._algHandle_algHandle
Definition at line 30 of file MuonIsolatorGetter.py.