#------------------------------------------------------------------------- # Algorithms #------------------------------------------------------------------------- from AthenaCommon.AlgSequence import AlgSequence job = AlgSequence() # Add top algorithms to be run from SCT2.SCT2Conf import MySCTtscan job += MySCTtscan("MySCTtscan") #-------------------------------------------------------------- # Set output level threshold (DEBUG, INFO, WARNING, ERROR, FATAL) #-------------------------------------------------------------- job.MySCTtscan.OutputLevel = WARNING #job.AtRndmGenSvc.OutputLevel = WARNING #job.AthenaEventLoopMgr.OutputLevel = WARNING #-------------------------------------------------------------- # Event related parameters #-------------------------------------------------------------- theApp.EvtMax = 1000 #------------------------------------------------------------------------ # The properties of the MySCTtscan algorithm #------------------------------------------------------------------------ job.MySCTtscan.EfieldModel = 2 job.MySCTtscan.IsSCTDigiModel = FALSE #job.MySCTtscan.IsSCTDigiModel = TRUE job.MySCTtscan.TimeOfThreshold_min = -25.0 job.MySCTtscan.TimeOfThreshold_max = 75.0 job.MySCTtscan.IsNewPulseShape = TRUE job.MySCTtscan.BiasVoltage_VB = 150. job.MySCTtscan.MagneticField_B = -2.0 job.MySCTtscan.Temperature_T = 273.15 job.MySCTtscan.TransportTimeStep = 0.25 job.MySCTtscan.TransportTimeMax = 25.0 job.MySCTtscan.X_origin_min = 0.0000 job.MySCTtscan.X_origin_max = 0.0080 job.MySCTtscan.Track_Phi_min = -16.0 job.MySCTtscan.Track_Phi_max = 8.0 job.MySCTtscan.Track_Eta_min = -1.0 job.MySCTtscan.Track_Eta_max = 1.0 job.MySCTtscan.Threshold = 1.0 job.MySCTtscan.Ydivision = 100 job.MySCTtscan.eh_pairs = 108.0 job.MySCTtscan.IsLandau = TRUE job.MySCTtscan.CoutLevel= 0 # =3(eh), 2(strip), 1(event), 0(no cout) # save ROOT histograms and Tuple #------------------------------------------------------------ from GaudiSvc.GaudiSvcConf import THistSvc ServiceMgr += THistSvc() ServiceMgr.THistSvc.Output = [ "AANT DATAFILE='tscan_3.root' OPT='RECREATE'" ] #============================================================== # End of job options file ###############################################################