#------------------------------------------------------------------------- # Algorithms #------------------------------------------------------------------------- from AthenaCommon.AlgSequence import AlgSequence job = AlgSequence() # Add top algorithms to be run from SCT1.SCT1Conf import MySCTtestmap job += MySCTtestmap("MySCTtestmap") #-------------------------------------------------------------- # Set output level threshold (DEBUG, INFO, WARNING, ERROR, FATAL) #-------------------------------------------------------------- job.MySCTtestmap.OutputLevel = WARNING #job.AtRndmGenSvc.OutputLevel = WARNING #job.AthenaEventLoopMgr.OutputLevel = WARNING #-------------------------------------------------------------- # Event related parameters #-------------------------------------------------------------- theApp.EvtMax = 1 #------------------------------------------------------------------------ # The properties of the MySCTtestmap algorithm #------------------------------------------------------------------------ job.MySCTtestmap.X_in= 40. job.MySCTtestmap.Y_in= 140. #------------------------------------------------------------------------ # save ROOT histograms and Tuple #------------------------------------------------------------ from GaudiSvc.GaudiSvcConf import THistSvc ServiceMgr += THistSvc() ServiceMgr.THistSvc.Output = [ "AANT DATAFILE='testmap_7.5umnew.aan.root' OPT='RECREATE'" ] #============================================================== # End of job options file ###############################################################