#------------------------------------------------------------------------- # 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= 30. job.MySCTtestmap.Y_in= 250. #------------------------------------------------------------------------ # save ROOT histograms and Tuple #------------------------------------------------------------ from GaudiSvc.GaudiSvcConf import THistSvc ServiceMgr += THistSvc() ServiceMgr.THistSvc.Output = [ "AANT DATAFILE='testmap_30_250.aan.root' OPT='RECREATE'" ] #============================================================== # End of job options file ###############################################################