Definition at line 424 of file pTools.py.
| def GaudiMP.pTools.LumiFSR.__init__ |
( |
|
self, |
|
|
|
lumi |
|
) |
| |
Definition at line 425 of file pTools.py.
438 for r
in lumi.runNumbers() :
441 for f
in lumi.fileIDs() :
446 sa = s.split(
"info (key/incr/integral) : ")[-1]
447 sa = sa.split(
'/')[:-1]
454 self.
keys = self.info.keys()
| def GaudiMP.pTools.LumiFSR.__init__ |
( |
|
self, |
|
|
|
lumi |
|
) |
| |
Definition at line 425 of file pTools.py.
438 for r
in lumi.runNumbers() :
441 for f
in lumi.fileIDs() :
446 sa = s.split(
"info (key/incr/integral) : ")[-1]
447 sa = sa.split(
'/')[:-1]
454 self.
keys = self.info.keys()
| def GaudiMP.pTools.LumiFSR.__repr__ |
( |
|
self | ) |
|
Definition at line 481 of file pTools.py.
482 s =
"LumiFSR Python class\n"
487 for f
in self.
files :
491 increment, integral = self.
info[k]
492 s +=
"\t\t%i\t%i\t%i\n"%(k,increment,integral)
| def GaudiMP.pTools.LumiFSR.__repr__ |
( |
|
self | ) |
|
Definition at line 481 of file pTools.py.
482 s =
"LumiFSR Python class\n"
487 for f
in self.
files :
491 increment, integral = self.
info[k]
492 s +=
"\t\t%i\t%i\t%i\n"%(k,increment,integral)
| def GaudiMP.pTools.LumiFSR.merge |
( |
|
self, |
|
|
|
otherLumi |
|
) |
| |
Definition at line 455 of file pTools.py.
456 assert otherLumi.__class__.__name__ ==
"LumiFSR"
458 for r
in otherLumi.runs :
462 self.runs.append( r )
465 for f
in otherLumi.files :
469 self.files.append( f )
472 for k
in otherLumi.keys :
473 increment, integral = otherLumi.info[k]
475 myIncrement, myIntegral = self.
info[k]
476 self.
info[k] = ( myIncrement+increment, myIntegral+integral )
478 self.
info[k] = ( increment, integral )
480 self.
keys = self.info.keys()
| def GaudiMP.pTools.LumiFSR.merge |
( |
|
self, |
|
|
|
otherLumi |
|
) |
| |
Definition at line 455 of file pTools.py.
456 assert otherLumi.__class__.__name__ ==
"LumiFSR"
458 for r
in otherLumi.runs :
462 self.runs.append( r )
465 for f
in otherLumi.files :
469 self.files.append( f )
472 for k
in otherLumi.keys :
473 increment, integral = otherLumi.info[k]
475 myIncrement, myIntegral = self.
info[k]
476 self.
info[k] = ( myIncrement+increment, myIntegral+integral )
478 self.
info[k] = ( increment, integral )
480 self.
keys = self.info.keys()
| GaudiMP.pTools.LumiFSR.files |
| GaudiMP.pTools.LumiFSR.info |
| GaudiMP.pTools.LumiFSR.keys |
| GaudiMP.pTools.LumiFSR.runs |
The documentation for this class was generated from the following file:
- InstallArea/x86_64-slc6-gcc48-opt/python/GaudiMP/pTools.py