~ma5dev/madanalysis5/v1.5beta

« back to all changes in this revision

Viewing changes to madanalysis/dataset/dataset_collection.py

  • Committer: Eric Conte
  • Date: 2016-12-08 10:28:55 UTC
  • Revision ID: eric.conte@cern.ch-20161208102855-thahw9h2be839yu6
update all-file with MA5banner + logging.getLogger(MA5)

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
        return self.table[i][1]
38
38
 
39
39
    def Display(self):
40
 
        logging.info(" ********* List of defined datasets *********" )
 
40
        logging.getLogger('MA5').info(" ********* List of defined datasets *********" )
41
41
        for value in self.table:
42
 
            logging.info(" "+value[0]+" ("+value[1].GetStringTag()+")")
43
 
        logging.info(" ********************************************" )
 
42
            logging.getLogger('MA5').info(" "+value[0]+" ("+value[1].GetStringTag()+")")
 
43
        logging.getLogger('MA5').info(" ********************************************" )
44
44
 
45
45
    def Find(self,name):
46
46
        name.lower()