|
[Rivet-svn] r3180 - in trunk: . binblackhole at projects.hepforge.org blackhole at projects.hepforge.orgTue Jul 12 00:41:34 BST 2011
Author: buckley Date: Tue Jul 12 00:41:34 2011 New Revision: 3180 Log: Whitespace and ChangeLog Modified: trunk/ChangeLog trunk/bin/aida2flat Modified: trunk/ChangeLog ============================================================================== --- trunk/ChangeLog Tue Jul 12 00:41:13 2011 (r3179) +++ trunk/ChangeLog Tue Jul 12 00:41:34 2011 (r3180) @@ -1,3 +1,18 @@ +2011-07-12 Andy Buckley <andy at insectnation.org> + + * bin/make-plots: Protect property reading against unstripped \r + characters from DOS newlines. + + * bin/rivet-mkhtml: Add a -M unmatch regex flag (note that these + are matching the analysis path rather than individual histos on + this script), and speed up the initial analysis identification and + selection by avoiding loops of regex comparisons for repeats of + strings which have already been analysed. + + * bin/compare-histos: remove the completely (?) unused histogram + list, and add -m and -M regex flags, as for aida2flat and + flat2aida. + 2011-06-30 Hendrik Hoeth <hendrik.hoeth at cern.ch> * fix fromFlat() in lighthistos: It would ignore histogram paths Modified: trunk/bin/aida2flat ============================================================================== --- trunk/bin/aida2flat Tue Jul 12 00:41:13 2011 (r3179) +++ trunk/bin/aida2flat Tue Jul 12 00:41:34 2011 (r3180) @@ -134,6 +134,8 @@ for dps in tree.findall("dataPointSet"): useThis = True dpspath = os.path.join(dps.get("path"), dps.get("name")) + + ## If regexes have been provided, only add analyses which match and don't unmatch if opts.PATHPATTERNS: useThis = False for regex in opts.PATHPATTERNS: @@ -145,6 +147,7 @@ if regex.search(dpspath): useThis = False break + if useThis: hist = lighthisto.Histo.fromDPS(dps) try:
More information about the Rivet-svn mailing list |