ATLAS Offline Software
OverlapAlgorithmsTest_eljob.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 #
3 # Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
4 #
5 # @author Nils Krumnack
6 
7 
8 # Read the submission directory as a command line argument. You can
9 # extend the list of arguments with your private ones later on.
10 import optparse
11 parser = optparse.OptionParser()
12 parser.add_option( '-d', '--data-type', dest = 'data_type',
13  action = 'store', type = 'string', default = 'data',
14  help = 'Type of data to run over. Valid options are data, mc, afii' )
15 parser.add_option( '-s', '--submission-dir', dest = 'submission_dir',
16  action = 'store', type = 'string', default = 'submitDir',
17  help = 'Submission directory for EventLoop' )
18 parser.add_option( '-u', '--unit-test', dest='unit_test',
19  action = 'store_true', default = False,
20  help = 'Run the job in "unit test mode"' )
21 ( options, args ) = parser.parse_args()
22 
23 # Set up (Py)ROOT.
24 import ROOT
25 ROOT.xAOD.Init().ignore()
26 
27 # ideally we'd run over all of them, but we don't have a mechanism to
28 # configure per-sample right now
29 
30 dataType = options.data_type
31 
32 inputfile = {"data": 'ASG_TEST_FILE_DATA',
33  "mc": 'ASG_TEST_FILE_MC',
34  "afii": 'ASG_TEST_FILE_MC_AFII'}
35 
36 if dataType not in ["data", "mc", "afii"] :
37  raise ValueError ("invalid data type: " + dataType)
38 
39 # Set up the sample handler object. See comments from the C++ macro
40 # for the details about these lines.
41 import os
42 sh = ROOT.SH.SampleHandler()
43 sh.setMetaString( 'nc_tree', 'CollectionTree' )
44 sample = ROOT.SH.SampleLocal (dataType)
45 sample.add (os.getenv (inputfile[dataType]))
46 sh.add (sample)
47 sh.printContent()
48 
49 # Create an EventLoop job.
50 job = ROOT.EL.Job()
51 job.sampleHandler( sh )
52 job.options().setDouble( ROOT.EL.Job.optMaxEvents, 500 )
53 
54 from AsgAnalysisAlgorithms.AsgAnalysisAlgorithmsTest import makeOverlapSequence
55 algSeq = makeOverlapSequence (dataType)
56 print( algSeq ) # For debugging
57 algSeq.addSelfToJob( job )
58 
59 
60 # Set up an output file for the job:
61 job.outputAdd( ROOT.EL.OutputStream( 'ANALYSIS' ) )
62 
63 # Find the right output directory:
64 submitDir = options.submission_dir
65 if options.unit_test:
66  import os
67  import tempfile
68  submitDir = tempfile.mkdtemp( prefix = 'overlapTest_', dir = os.getcwd() )
69  os.rmdir( submitDir )
70  pass
71 
72 # Run the job using the direct driver.
73 driver = ROOT.EL.DirectDriver()
74 driver.submit( job, submitDir )
DiTauMassTools::ignore
void ignore(T &&)
Definition: PhysicsAnalysis/TauID/DiTauMassTools/DiTauMassTools/HelperFunctions.h:54
Muon::print
std::string print(const MuPatSegment &)
Definition: MuonTrackSteering.cxx:28