Public Member Functions | |
def | configure |
def | AlgHandle |
Returns a handle to the Atlfast::KIsolator instance. | |
Private Attributes | |
_algHandle |
Supplies a handle if needed. StoreGate location of the Atlfast muon collection is given as input. KIsolator is designed to be used alongside FastShower.
Definition at line 14 of file MuonKIsolatorGetter.py.
def python::MuonKIsolatorGetter::Atlfast__MuonKIsolatorGetter::configure | ( | self | ) |
Creates and configures Atlfast::KIsolator instance. This is done via the genConf autogenerated getter class. StoreGate location of the Atlfast muon collection is given as input
Definition at line 20 of file MuonKIsolatorGetter.py.
00020 : 00021 00022 try: 00023 from AtlfastAlgs.AtlfastAlgsConf import Atlfast__KIsolator 00024 except Exception: 00025 mlog = logging.getLogger( 'Atlfast__MuonKIsolatorGetter::configure:' ) 00026 mlog.error("could not import AtlfastAlgs.Atlfast__KIsolator") 00027 print traceback.format_exc() 00028 return False 00029 00030 theMuonKIsolator=Atlfast__KIsolator("MuonKIsolator") 00031 self._algHandle_algHandle = theMuonKIsolator; 00032 00033 theMuonKIsolator.InputLocation = "/Event/AtlfastMuons" 00034 theMuonKIsolator.IsolatedOutputLocation = "/Event/AtlfastIsolatedMuons" 00035 theMuonKIsolator.NonIsolatedOutputLocation = "/Event/AtlfastNonIsolatedMuons" 00036 theMuonKIsolator.RClusterMatch = 0.0 00037 00038 return True 00039 ## Returns a handle to the Atlfast::KIsolator instance.
def python::MuonKIsolatorGetter::Atlfast__MuonKIsolatorGetter::AlgHandle | ( | self | ) |
Returns a handle to the Atlfast::KIsolator instance.
Definition at line 42 of file MuonKIsolatorGetter.py.
00042 : 00043 return self._algHandle_algHandle return self._algHandle_algHandle
Definition at line 31 of file MuonKIsolatorGetter.py.