ATLAS Offline Software
Variables
createDCubeDigitHistograms_withSel Namespace Reference

Variables

 parser = argparse.ArgumentParser(prog='createDCubeDigitHistograms', formatter_class=argparse.ArgumentDefaultsHelpFormatter)
 
 help
 
 default
 
 type
 
 False
 
 action
 
 Options = parser.parse_args()
 
 inputFile = ROOT.TFile(Options.inputFile, "READ")
 
 inputTree = inputFile.Get("NSWValTree")
 
 nEntries = inputTree.GetEntries()
 
 outputFile = ROOT.TFile(Options.outputFile, "RECREATE")
 
 ODir = outputFile.GetDirectory("digitization/")
 
 CSCselections = Options.CSCsel.split("_")
 
 CSC_eta = CSCselections[0]
 
 CSC_sector = int (CSCselections[1])
 
 TGCselections = Options.TGCsel.split("_")
 
 TGC_eta = TGCselections[0]
 
 TGC_sector = int (TGCselections[1])
 
 RPCselections = Options.RPCsel.split("_")
 
 RPC_eta = RPCselections[0]
 
 RPC_sector = int (RPCselections[1])
 
 MDTselections = Options.MDTsel.split("_")
 
 MDT_eta = MDTselections[0]
 
 MDT_sector = int (MDTselections[1])
 
list cscDigitHists = []
 
list cscSDOHists = []
 
list cscRDOHists = []
 
list tgcDigitHists = []
 
list tgcSDOHists = []
 
list tgcRDOHists = []
 
list rpcDigitHists = []
 
list mdtDigitHists = []
 
int csc_eta_sel = 0
 
int csc_sector_sel = lambda s: MyHistoFiller.Eta(ord(s.Digits_CSC_stationPhi[ncscDigit])) < 10
 
 chamber_name
 
 eta_sel
 
 sector_sel
 
int tgc_eta_sel = 0
 
int tgc_sector_sel = lambda s: MyHistoFiller.Eta(ord(s.Digits_TGC_stationPhi[ntgcDigit])) < 51
 
int rpc_eta_sel = 0
 
int rpc_sector_sel = lambda s: MyHistoFiller.Eta(ord(s.Digits_RPC_stationPhi[nrpcDigit])) < 10
 
int mdt_eta_sel = 0
 
int mdt_sector_sel = lambda s: MyHistoFiller.Eta(ord(s.Digits_MDT_stationPhi[nmdtDigit])) < 10
 
 cscDigitHist = MyHistoFiller( chamber_name = "CSC_Digit", eta_sel = None, sector_sel = None )
 
 cscSDOHist = MyHistoFiller( chamber_name = "CSC_SDO", eta_sel = None, sector_sel = None )
 
 cscRDOHist = MyHistoFiller( chamber_name = "CSC_RDO", eta_sel = None, sector_sel = None )
 
 tgcDigitHist = MyHistoFiller( chamber_name = "TGC_Digit", eta_sel = None, sector_sel = None )
 
 tgcSDOHist = MyHistoFiller( chamber_name = "TGC_SDO", eta_sel = None, sector_sel = None )
 
 tgcRDOHist = MyHistoFiller( chamber_name = "TGC_RDO", eta_sel = None, sector_sel = None )
 
 rpcDigitHist = MyHistoFiller( chamber_name = "RPC_Digit", eta_sel = None, sector_sel = None )
 
 mdtDigitHist = MyHistoFiller( chamber_name = "MDT_Digit", eta_sel = None, sector_sel = None )
 

Variable Documentation

◆ action

createDCubeDigitHistograms_withSel.action

Definition at line 13 of file createDCubeDigitHistograms_withSel.py.

◆ chamber_name

createDCubeDigitHistograms_withSel.chamber_name

Definition at line 109 of file createDCubeDigitHistograms_withSel.py.

◆ CSC_eta

createDCubeDigitHistograms_withSel.CSC_eta = CSCselections[0]

Definition at line 53 of file createDCubeDigitHistograms_withSel.py.

◆ csc_eta_sel

int createDCubeDigitHistograms_withSel.csc_eta_sel = 0

Definition at line 97 of file createDCubeDigitHistograms_withSel.py.

◆ CSC_sector

createDCubeDigitHistograms_withSel.CSC_sector = int (CSCselections[1])

Definition at line 55 of file createDCubeDigitHistograms_withSel.py.

◆ csc_sector_sel

createDCubeDigitHistograms_withSel.csc_sector_sel = lambda s: MyHistoFiller.Eta(ord(s.Digits_CSC_stationPhi[ncscDigit])) < 10

Definition at line 104 of file createDCubeDigitHistograms_withSel.py.

◆ cscDigitHist

createDCubeDigitHistograms_withSel.cscDigitHist = MyHistoFiller( chamber_name = "CSC_Digit", eta_sel = None, sector_sel = None )

Definition at line 184 of file createDCubeDigitHistograms_withSel.py.

◆ cscDigitHists

list createDCubeDigitHistograms_withSel.cscDigitHists = []

Definition at line 85 of file createDCubeDigitHistograms_withSel.py.

◆ cscRDOHist

createDCubeDigitHistograms_withSel.cscRDOHist = MyHistoFiller( chamber_name = "CSC_RDO", eta_sel = None, sector_sel = None )

Definition at line 190 of file createDCubeDigitHistograms_withSel.py.

◆ cscRDOHists

list createDCubeDigitHistograms_withSel.cscRDOHists = []

Definition at line 87 of file createDCubeDigitHistograms_withSel.py.

◆ cscSDOHist

createDCubeDigitHistograms_withSel.cscSDOHist = MyHistoFiller( chamber_name = "CSC_SDO", eta_sel = None, sector_sel = None )

Definition at line 187 of file createDCubeDigitHistograms_withSel.py.

◆ cscSDOHists

list createDCubeDigitHistograms_withSel.cscSDOHists = []

Definition at line 86 of file createDCubeDigitHistograms_withSel.py.

◆ CSCselections

createDCubeDigitHistograms_withSel.CSCselections = Options.CSCsel.split("_")

Definition at line 52 of file createDCubeDigitHistograms_withSel.py.

◆ default

createDCubeDigitHistograms_withSel.default

Definition at line 11 of file createDCubeDigitHistograms_withSel.py.

◆ eta_sel

createDCubeDigitHistograms_withSel.eta_sel

Definition at line 109 of file createDCubeDigitHistograms_withSel.py.

◆ False

createDCubeDigitHistograms_withSel.False

Definition at line 13 of file createDCubeDigitHistograms_withSel.py.

◆ help

createDCubeDigitHistograms_withSel.help

Definition at line 11 of file createDCubeDigitHistograms_withSel.py.

◆ inputFile

createDCubeDigitHistograms_withSel.inputFile = ROOT.TFile(Options.inputFile, "READ")

Definition at line 27 of file createDCubeDigitHistograms_withSel.py.

◆ inputTree

createDCubeDigitHistograms_withSel.inputTree = inputFile.Get("NSWValTree")

Definition at line 31 of file createDCubeDigitHistograms_withSel.py.

◆ MDT_eta

createDCubeDigitHistograms_withSel.MDT_eta = MDTselections[0]

Definition at line 74 of file createDCubeDigitHistograms_withSel.py.

◆ mdt_eta_sel

int createDCubeDigitHistograms_withSel.mdt_eta_sel = 0

Definition at line 166 of file createDCubeDigitHistograms_withSel.py.

◆ MDT_sector

createDCubeDigitHistograms_withSel.MDT_sector = int (MDTselections[1])

Definition at line 76 of file createDCubeDigitHistograms_withSel.py.

◆ mdt_sector_sel

createDCubeDigitHistograms_withSel.mdt_sector_sel = lambda s: MyHistoFiller.Eta(ord(s.Digits_MDT_stationPhi[nmdtDigit])) < 10

Definition at line 173 of file createDCubeDigitHistograms_withSel.py.

◆ mdtDigitHist

createDCubeDigitHistograms_withSel.mdtDigitHist = MyHistoFiller( chamber_name = "MDT_Digit", eta_sel = None, sector_sel = None )

Definition at line 205 of file createDCubeDigitHistograms_withSel.py.

◆ mdtDigitHists

list createDCubeDigitHistograms_withSel.mdtDigitHists = []

Definition at line 92 of file createDCubeDigitHistograms_withSel.py.

◆ MDTselections

createDCubeDigitHistograms_withSel.MDTselections = Options.MDTsel.split("_")

Definition at line 73 of file createDCubeDigitHistograms_withSel.py.

◆ nEntries

createDCubeDigitHistograms_withSel.nEntries = inputTree.GetEntries()

Definition at line 36 of file createDCubeDigitHistograms_withSel.py.

◆ ODir

createDCubeDigitHistograms_withSel.ODir = outputFile.GetDirectory("digitization/")

Definition at line 49 of file createDCubeDigitHistograms_withSel.py.

◆ Options

createDCubeDigitHistograms_withSel.Options = parser.parse_args()

Definition at line 19 of file createDCubeDigitHistograms_withSel.py.

◆ outputFile

createDCubeDigitHistograms_withSel.outputFile = ROOT.TFile(Options.outputFile, "RECREATE")

Definition at line 41 of file createDCubeDigitHistograms_withSel.py.

◆ parser

createDCubeDigitHistograms_withSel.parser = argparse.ArgumentParser(prog='createDCubeDigitHistograms', formatter_class=argparse.ArgumentDefaultsHelpFormatter)

Definition at line 10 of file createDCubeDigitHistograms_withSel.py.

◆ RPC_eta

createDCubeDigitHistograms_withSel.RPC_eta = RPCselections[0]

Definition at line 67 of file createDCubeDigitHistograms_withSel.py.

◆ rpc_eta_sel

int createDCubeDigitHistograms_withSel.rpc_eta_sel = 0

Definition at line 149 of file createDCubeDigitHistograms_withSel.py.

◆ RPC_sector

createDCubeDigitHistograms_withSel.RPC_sector = int (RPCselections[1])

Definition at line 69 of file createDCubeDigitHistograms_withSel.py.

◆ rpc_sector_sel

createDCubeDigitHistograms_withSel.rpc_sector_sel = lambda s: MyHistoFiller.Eta(ord(s.Digits_RPC_stationPhi[nrpcDigit])) < 10

Definition at line 156 of file createDCubeDigitHistograms_withSel.py.

◆ rpcDigitHist

createDCubeDigitHistograms_withSel.rpcDigitHist = MyHistoFiller( chamber_name = "RPC_Digit", eta_sel = None, sector_sel = None )

Definition at line 202 of file createDCubeDigitHistograms_withSel.py.

◆ rpcDigitHists

list createDCubeDigitHistograms_withSel.rpcDigitHists = []

Definition at line 91 of file createDCubeDigitHistograms_withSel.py.

◆ RPCselections

createDCubeDigitHistograms_withSel.RPCselections = Options.RPCsel.split("_")

Definition at line 66 of file createDCubeDigitHistograms_withSel.py.

◆ sector_sel

createDCubeDigitHistograms_withSel.sector_sel

Definition at line 109 of file createDCubeDigitHistograms_withSel.py.

◆ TGC_eta

createDCubeDigitHistograms_withSel.TGC_eta = TGCselections[0]

Definition at line 60 of file createDCubeDigitHistograms_withSel.py.

◆ tgc_eta_sel

int createDCubeDigitHistograms_withSel.tgc_eta_sel = 0

Definition at line 124 of file createDCubeDigitHistograms_withSel.py.

◆ TGC_sector

createDCubeDigitHistograms_withSel.TGC_sector = int (TGCselections[1])

Definition at line 62 of file createDCubeDigitHistograms_withSel.py.

◆ tgc_sector_sel

createDCubeDigitHistograms_withSel.tgc_sector_sel = lambda s: MyHistoFiller.Eta(ord(s.Digits_TGC_stationPhi[ntgcDigit])) < 51

Definition at line 131 of file createDCubeDigitHistograms_withSel.py.

◆ tgcDigitHist

createDCubeDigitHistograms_withSel.tgcDigitHist = MyHistoFiller( chamber_name = "TGC_Digit", eta_sel = None, sector_sel = None )

Definition at line 193 of file createDCubeDigitHistograms_withSel.py.

◆ tgcDigitHists

list createDCubeDigitHistograms_withSel.tgcDigitHists = []

Definition at line 88 of file createDCubeDigitHistograms_withSel.py.

◆ tgcRDOHist

createDCubeDigitHistograms_withSel.tgcRDOHist = MyHistoFiller( chamber_name = "TGC_RDO", eta_sel = None, sector_sel = None )

Definition at line 199 of file createDCubeDigitHistograms_withSel.py.

◆ tgcRDOHists

list createDCubeDigitHistograms_withSel.tgcRDOHists = []

Definition at line 90 of file createDCubeDigitHistograms_withSel.py.

◆ tgcSDOHist

createDCubeDigitHistograms_withSel.tgcSDOHist = MyHistoFiller( chamber_name = "TGC_SDO", eta_sel = None, sector_sel = None )

Definition at line 196 of file createDCubeDigitHistograms_withSel.py.

◆ tgcSDOHists

list createDCubeDigitHistograms_withSel.tgcSDOHists = []

Definition at line 89 of file createDCubeDigitHistograms_withSel.py.

◆ TGCselections

createDCubeDigitHistograms_withSel.TGCselections = Options.TGCsel.split("_")

Definition at line 59 of file createDCubeDigitHistograms_withSel.py.

◆ type

createDCubeDigitHistograms_withSel.type

Definition at line 11 of file createDCubeDigitHistograms_withSel.py.