Ignore:
Timestamp:
03/12/12 16:34:59 (13 years ago)
Author:
neise
Message:
added function __add__ to RawData. one can now jump over a certain amout of events, by doing: e.g. run=run+34
File:
1 edited

Legend:

Unmodified
Added
Removed
  • fact/tools/pyscripts/pyfact/pyfact_rename.py

    r13075 r13076  
    120120        return self
    121121       
     122    def __add__(self, jump_over):
     123        self.data_file.GetRow(jump_over)
     124        return self
     125       
    122126    def next(self):
    123127        """ used by __iter__ """
Note: See TracChangeset for help on using the changeset viewer.