Skip to content
Snippets Groups Projects

fixed Python formatting (updated autopep8)

Merged Marco Clemencic requested to merge clemenci/Gaudi:fix-formatting into master
10 files
+ 76
38
Compare changes
  • Side-by-side
  • Inline
Files
10
@@ -103,17 +103,25 @@ rhisto1.Print()
rhisto2.Print()
# get some "extra infomration"
print ' Histo1 : mean /err: %10f +- %10f ' % (histo1.mean(), histo1.meanErr())
print ' Histo1 : rms /err: %10f +- %10f ' % (histo1.rms(), histo1.rmsErr())
print ' Histo1 : skewness/err: %10f +- %10f ' % (histo1.skewness(), histo1.skewnessErr())
print ' Histo1 : kurtosis/err: %10f +- %10f ' % (histo1.kurtosis(), histo1.kurtosisErr())
print ' Histo1 : mean /err: %10f +- %10f ' % (
histo1.mean(), histo1.meanErr())
print ' Histo1 : rms /err: %10f +- %10f ' % (
histo1.rms(), histo1.rmsErr())
print ' Histo1 : skewness/err: %10f +- %10f ' % (
histo1.skewness(), histo1.skewnessErr())
print ' Histo1 : kurtosis/err: %10f +- %10f ' % (
histo1.kurtosis(), histo1.kurtosisErr())
print ' Histo1 : path in THS : "%s"' % histo1.path()
print ' Histo2 : mean /err: %10f +- %10f ' % (histo2.mean(), histo2.meanErr())
print ' Histo2 : rms /err: %10f +- %10f ' % (histo2.rms(), histo2.rmsErr())
print ' Histo2 : skewness/err: %10f +- %10f ' % (histo2.skewness(), histo2.skewnessErr())
print ' Histo2 : kurtosis/err: %10f +- %10f ' % (histo2.kurtosis(), histo2.kurtosisErr())
print ' Histo2 : mean /err: %10f +- %10f ' % (
histo2.mean(), histo2.meanErr())
print ' Histo2 : rms /err: %10f +- %10f ' % (
histo2.rms(), histo2.rmsErr())
print ' Histo2 : skewness/err: %10f +- %10f ' % (
histo2.skewness(), histo2.skewnessErr())
print ' Histo2 : kurtosis/err: %10f +- %10f ' % (
histo2.kurtosis(), histo2.kurtosisErr())
print ' Histo2 : path in THS : "%s"' % histo2.path()
Loading