PhotonKIsolatorGetter.py

Go to the documentation of this file.
00001 from AthenaCommon.SystemOfUnits import * 
00002 from AthenaCommon.Constants import *
00003 from AthenaCommon.Logging import logging  
00004 import traceback 
00005 from RecExConfig.Configured import Configured
00006 
00007 
00008 ## @brief Configures an instance of Atlfast::KIsolator for photons.
00009 #
00010 # Supplies a handle if needed. 
00011 # StoreGate location of the Atlfast photon collection is given as input.
00012 # KIsolator is designed to be used alongside FastShower.
00013 
00014 class Atlfast__PhotonKIsolatorGetter ( Configured )  :
00015 
00016     ## Creates and configures Atlfast::KIsolator instance.
00017     # This is done via the genConf autogenerated getter class.
00018     # StoreGate location of the Atlfast photon collection is given as input
00019 
00020     def configure(self):
00021 
00022         try:        
00023             from AtlfastAlgs.AtlfastAlgsConf import Atlfast__KIsolator
00024         except Exception:
00025             mlog = logging.getLogger( 'Atlfast__PhotonKIsolatorGetter::configure:' )
00026             mlog.error("could not import AtlfastAlgs.Atlfast__KIsolator")
00027             print traceback.format_exc()
00028             return False
00029 
00030         thePhotonKIsolator=Atlfast__KIsolator("PhotonKIsolator")
00031         self._algHandle_algHandle = thePhotonKIsolator;
00032 
00033         thePhotonKIsolator.InputLocation             = "/Event/AtlfastPhotons"
00034         thePhotonKIsolator.IsolatedOutputLocation    = "/Event/AtlfastIsolatedPhotons"
00035         thePhotonKIsolator.NonIsolatedOutputLocation = "/Event/AtlfastNonIsolatedPhotons"
00036 
00037         return True
00038 
00039     ## Returns a handle to the Atlfast::KIsolator instance.
00040 
00041     def AlgHandle(self):
00042         return self._algHandle_algHandle

Generated on Mon Sep 24 14:19:11 2007 for AtlfastAlgs by  doxygen 1.5.1