/search.css" rel="stylesheet" type="text/css"/> /search.js">
00001 #!/usr/bin/env python 00002 ''' 00003 Ge68 Tag 00004 Usage: 00005 nuwa.py --no-history -A "0.1*s" -n -1 -m"Quickstart.EH1Tables" -m"Quickstart.Calibrate" -m"Quickstart.CalculateCalibStats" -m"Quickstart.Reconstruct" -m"MuonTagging.MuonTagLoose" -m"CalibrationTagging.Ge68Tag" -o output.root input.root 00006 Help: 00007 nuwa.py -m"CalibrationTagging.Ge68Tag -h" 00008 00009 Created By: tsang@caltech.edu, 08/26/2011 00010 ''' 00011 00012 def configure( argv=[] ): 00013 'Ge68 Tagger' 00014 from Gaudi.Configuration import ApplicationMgr 00015 app = ApplicationMgr() 00016 00017 from CalibrationTagging.CalibrationTaggingConf import Ge68Tag 00018 ge68TagAlg = Ge68Tag() 00019 00020 app.TopAlg.append(ge68TagAlg) 00021 00022 pass 00023 00024 return 00025 00026 def run(app): 00027 'Ge68 Tagger' 00028 pass