All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
listhists.py
Go to the documentation of this file.
1 import ROOT
2 import util
3 import argparse
4 
5 
6 def main(args):
7  f = ROOT.TFile(args.input)
8  f.ls()
9 
10 if __name__ == "__main__":
11  parser = argparse.ArgumentParser()
12  parser = util.with_input_args(parser)
13  main(parser.parse_args())
14 
def main
Definition: listhists.py:6
def with_input_args
Definition: util.py:27