#------------------------------------------------------------------------- # Algorithms #------------------------------------------------------------------------- from AthenaCommon.AlgSequence import AlgSequence job = AlgSequence() # Add top algorithms to be run from SCT1.SCT1Conf import MySCTcharge job += MySCTcharge("MySCTcharge") #-------------------------------------------------------------- # Set output level threshold (DEBUG, INFO, WARNING, ERROR, FATAL) #-------------------------------------------------------------- job.MySCTcharge.OutputLevel = WARNING #job.AtRndmGenSvc.OutputLevel = WARNING #job.AthenaEventLoopMgr.OutputLevel = WARNING #-------------------------------------------------------------- # Event related parameters #-------------------------------------------------------------- theApp.EvtMax = 10 #------------------------------------------------------------------------ # The properties of the MySCTcharge algorithm #------------------------------------------------------------------------ job.MySCTcharge.EfieldModel = 2 job.MySCTcharge.IsSCTDigiModel = FALSE job.MySCTcharge.DepletionVoltage_VD = 70. job.MySCTcharge.BiasVoltage_VB = 150. job.MySCTcharge.MagneticField_B = -2.0 job.MySCTcharge.Temperature_T = 273. job.MySCTcharge.TransportTimeStep = 0.25 job.MySCTcharge.TransportTimeMax = 25.0 job.MySCTcharge.X0 = 45.0 # initial position [micron] job.MySCTcharge.Y0 = 100.0 # initial position [micron] job.MySCTcharge.CoutLevel= 0 # =3(eh), 2(strip), 1(event), 0(no cout) #============================================================== # End of job options file ###############################################################