diff --git a/common-tools/clara-io/pom.xml b/common-tools/clara-io/pom.xml index e9af30a899..5abfdb2f0f 100644 --- a/common-tools/clara-io/pom.xml +++ b/common-tools/clara-io/pom.xml @@ -3,14 +3,14 @@ 4.0.0 org.jlab.clas clara-io - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/clas-analysis/pom.xml b/common-tools/clas-analysis/pom.xml index ea00fb9a05..7a01f49e27 100644 --- a/common-tools/clas-analysis/pom.xml +++ b/common-tools/clas-analysis/pom.xml @@ -3,63 +3,63 @@ 4.0.0 org.jlab.clas clas-analysis - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-utils - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-physics - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-io - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-geometry - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-jcsg - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas swim-tools - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-detector - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/clas-detector/pom.xml b/common-tools/clas-detector/pom.xml index bf73998a52..81e33fce2c 100644 --- a/common-tools/clas-detector/pom.xml +++ b/common-tools/clas-detector/pom.xml @@ -3,21 +3,21 @@ 4.0.0 org.jlab.clas clas-detector - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-utils - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -29,13 +29,13 @@ org.jlab.clas clas-io - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-geometry - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/clas-geometry/pom.xml b/common-tools/clas-geometry/pom.xml index 3d67d7c7ed..579e1ee590 100644 --- a/common-tools/clas-geometry/pom.xml +++ b/common-tools/clas-geometry/pom.xml @@ -3,14 +3,14 @@ 4.0.0 org.jlab.clas clas-geometry - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/clas-io/pom.xml b/common-tools/clas-io/pom.xml index 6237418f6f..63024fadf4 100644 --- a/common-tools/clas-io/pom.xml +++ b/common-tools/clas-io/pom.xml @@ -3,14 +3,14 @@ 4.0.0 org.jlab.clas clas-io - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -87,13 +87,13 @@ org.jlab.clas clas-utils - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-logging - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT compile diff --git a/common-tools/clas-io/src/main/java/org/jlab/utils/HipoDiff.java b/common-tools/clas-io/src/main/java/org/jlab/utils/HipoDiff.java index d3528e93fb..946273f615 100644 --- a/common-tools/clas-io/src/main/java/org/jlab/utils/HipoDiff.java +++ b/common-tools/clas-io/src/main/java/org/jlab/utils/HipoDiff.java @@ -77,21 +77,25 @@ public static void main(String args[]) { final int type = schema.getType(j); final String name = schema.getElementName(j); int element = -1; + String values = ""; nentry++; switch (type) { case 1: if (bankA.getByte(name, i) != bankB.getByte(name, i)) { element = j; + values += bankA.getByte(name, i) + "/" + bankB.getByte(name, i); } break; case 2: if (bankA.getShort(name, i) != bankB.getShort(name, i)) { element = j; + values += bankA.getShort(name, i) + "/" + bankB.getShort(name, i); } break; case 3: if (bankA.getInt(name, i) != bankB.getInt(name, i)) { element = j; + values += bankA.getInt(name, i) + "/" + bankB.getInt(name, i); } break; case 4: @@ -99,15 +103,15 @@ public static void main(String args[]) { && (!Double.isInfinite(bankA.getFloat(name, i)) || !Double.isInfinite(bankB.getFloat(name, i))) && Math.abs(bankA.getFloat(name, i) - bankB.getFloat(name, i)) > tolerance) { element = j; + values += bankA.getFloat(name, i) + "/" + bankB.getFloat(name, i); } break; } if (element >= 0) { System.out.println("mismatch at event " + runConfigBank.getInt("event", 0) - + ", in row " + i + ", s/l/c " + bankA.getByte("sector", i) + "/" - + bankA.getByte("layer", i) + "/" + bankA.getShort("component", i) - + " for variable " + name + " with values " + bankA.getByte(name, i) + "/" - + bankB.getByte(name, i)); + + " in row " + i + + " for variable " + name + + " with values " + values); mismatch = true; nbadentry++; if (badEntries.containsKey(schema.getElementName(element))) { @@ -124,7 +128,7 @@ public static void main(String args[]) { } } } - System.out.println("Analyzed " + nevent + " with " + nbadevent + " bad banks"); + System.out.println("\n Analyzed " + nevent + " with " + nbadevent + " bad banks"); System.out.println(nbadrow + "/" + nrow + " mismatched rows"); System.out.println(nbadentry + "/" + nentry + " mismatched entry"); for (String name : badEntries.keySet()) { diff --git a/common-tools/clas-jcsg/pom.xml b/common-tools/clas-jcsg/pom.xml index 72981e4533..27cc532d6e 100644 --- a/common-tools/clas-jcsg/pom.xml +++ b/common-tools/clas-jcsg/pom.xml @@ -3,14 +3,14 @@ 4.0.0 org.jlab.clas clas-jcsg - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -27,12 +27,12 @@ org.jlab.clas clas-geometry - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-detector - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT java3d diff --git a/common-tools/clas-logging/pom.xml b/common-tools/clas-logging/pom.xml index b007b74253..1dc6b9aff8 100644 --- a/common-tools/clas-logging/pom.xml +++ b/common-tools/clas-logging/pom.xml @@ -3,14 +3,14 @@ 4.0.0 org.jlab.clas clas-logging - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/clas-math/pom.xml b/common-tools/clas-math/pom.xml index 95695b34de..5a3d572d3f 100644 --- a/common-tools/clas-math/pom.xml +++ b/common-tools/clas-math/pom.xml @@ -3,14 +3,14 @@ 4.0.0 org.jlab.clas clas-math - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/clas-physics/pom.xml b/common-tools/clas-physics/pom.xml index 9a6f2c0e6e..c07febc11f 100644 --- a/common-tools/clas-physics/pom.xml +++ b/common-tools/clas-physics/pom.xml @@ -4,14 +4,14 @@ org.jlab.clas clas-physics - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/clas-reco/pom.xml b/common-tools/clas-reco/pom.xml index 8ce60cd04e..640de65e5a 100644 --- a/common-tools/clas-reco/pom.xml +++ b/common-tools/clas-reco/pom.xml @@ -3,14 +3,14 @@ 4.0.0 org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -42,37 +42,37 @@ org.jlab.clas clas-math - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-io - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-logging - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-physics - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-utils - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-detector - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/clas-tracking/pom.xml b/common-tools/clas-tracking/pom.xml index 072c5fc067..f33178ddae 100644 --- a/common-tools/clas-tracking/pom.xml +++ b/common-tools/clas-tracking/pom.xml @@ -3,14 +3,14 @@ 4.0.0 org.jlab.clas clas-tracking - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -22,7 +22,7 @@ org.jlab.clas swim-tools - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar diff --git a/common-tools/clas-utils/pom.xml b/common-tools/clas-utils/pom.xml index ec8ebc851e..6bc92e8cbd 100644 --- a/common-tools/clas-utils/pom.xml +++ b/common-tools/clas-utils/pom.xml @@ -3,14 +3,14 @@ 4.0.0 org.jlab.clas clas-utils - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/cnuphys/magfield/pom.xml b/common-tools/cnuphys/magfield/pom.xml index d7cec5d8cd..20ac46c38f 100755 --- a/common-tools/cnuphys/magfield/pom.xml +++ b/common-tools/cnuphys/magfield/pom.xml @@ -23,7 +23,7 @@ org.jlab.clas clas-math - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/cnuphys/swimmer/pom.xml b/common-tools/cnuphys/swimmer/pom.xml index 976b672b9d..0ff7f08f2a 100755 --- a/common-tools/cnuphys/swimmer/pom.xml +++ b/common-tools/cnuphys/swimmer/pom.xml @@ -35,7 +35,7 @@ org.jlab.clas clas-math - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/coat-lib/deployDistribution.sh b/common-tools/coat-lib/deployDistribution.sh index 2dc0ad509a..f0e19fc2a8 100755 --- a/common-tools/coat-lib/deployDistribution.sh +++ b/common-tools/coat-lib/deployDistribution.sh @@ -8,7 +8,7 @@ cd `dirname $0` # Script is exporting existing Jar files to repository #------------------------------------------------------------------------------------------------- -VERSION=10.0.0 +VERSION=10.0.1 mvn org.apache.maven.plugins:maven-install-plugin:2.5.2:install-file \ -Dfile=target/coat-libs-${VERSION}-SNAPSHOT.jar \ diff --git a/common-tools/coat-lib/pom.xml b/common-tools/coat-lib/pom.xml index bd263acf1c..bcdf1ed3b6 100644 --- a/common-tools/coat-lib/pom.xml +++ b/common-tools/coat-lib/pom.xml @@ -3,7 +3,7 @@ 4.0.0 org.jlab.clas coat-libs - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT pom @@ -93,67 +93,67 @@ org.jlab.clas clas-io - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clara-io - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-utils - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-jcsg - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-detector - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-analysis - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-geometry - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-physics - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas swim-tools - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-tracking - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/parent/pom.xml b/common-tools/parent/pom.xml index fc6aa49c76..56bfd6a148 100644 --- a/common-tools/parent/pom.xml +++ b/common-tools/parent/pom.xml @@ -3,7 +3,7 @@ org.jlab.clas common-tools - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT pom diff --git a/common-tools/pom.xml b/common-tools/pom.xml index 5308dd1fa5..ff721b009b 100644 --- a/common-tools/pom.xml +++ b/common-tools/pom.xml @@ -2,14 +2,14 @@ 4.0.0 org.jlab.clas common-tools - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT pom org.jlab.clas clas12rec ../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/common-tools/swim-tools/pom.xml b/common-tools/swim-tools/pom.xml index ea5a881d39..6f0e3834de 100644 --- a/common-tools/swim-tools/pom.xml +++ b/common-tools/swim-tools/pom.xml @@ -3,21 +3,21 @@ 4.0.0 org.jlab.clas swim-tools - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/parent/pom.xml b/parent/pom.xml index 54509da585..7e7d39880b 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -3,7 +3,7 @@ org.jlab.clas clas12rec - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT pom diff --git a/pom.xml b/pom.xml index c22f14153d..48cee459ef 100644 --- a/pom.xml +++ b/pom.xml @@ -2,14 +2,14 @@ 4.0.0 org.jlab.clas clas12 - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT pom org.jlab.clas clas12rec parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/alert/pom.xml b/reconstruction/alert/pom.xml index 1f778623f8..8f84c08dc5 100644 --- a/reconstruction/alert/pom.xml +++ b/reconstruction/alert/pom.xml @@ -13,31 +13,31 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-io - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT compile org.jlab.clas clas-tracking - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT compile org.jlab.clas clas-geometry - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT compile diff --git a/reconstruction/band/pom.xml b/reconstruction/band/pom.xml index c0b695333b..53fe5530d0 100755 --- a/reconstruction/band/pom.xml +++ b/reconstruction/band/pom.xml @@ -13,14 +13,14 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/cnd/pom.xml b/reconstruction/cnd/pom.xml index 5a18c7cd35..caf3a05871 100755 --- a/reconstruction/cnd/pom.xml +++ b/reconstruction/cnd/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/cvt/pom.xml b/reconstruction/cvt/pom.xml index 2712618859..ca776fab1e 100644 --- a/reconstruction/cvt/pom.xml +++ b/reconstruction/cvt/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -21,7 +21,7 @@ org.jlab.clas clas-jcsg - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -47,7 +47,7 @@ org.jlab.clas clas-tracking - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/dc/pom.xml b/reconstruction/dc/pom.xml index 273a4eea3b..29cd2d6fd1 100644 --- a/reconstruction/dc/pom.xml +++ b/reconstruction/dc/pom.xml @@ -14,7 +14,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -22,19 +22,19 @@ org.jlab.clas clas-jcsg - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-analysis - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -63,13 +63,13 @@ org.jlab.clas swim-tools - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-math - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/eb/pom.xml b/reconstruction/eb/pom.xml index b8ac809e93..e0f4a7e62e 100644 --- a/reconstruction/eb/pom.xml +++ b/reconstruction/eb/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -21,25 +21,25 @@ org.jlab.clas clas-utils - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-io - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-analysis - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/ec/pom.xml b/reconstruction/ec/pom.xml index 1b6dd12e87..d3a8892577 100644 --- a/reconstruction/ec/pom.xml +++ b/reconstruction/ec/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -21,13 +21,13 @@ org.jlab.clas clas-detector - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-analysis - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/fmt/pom.xml b/reconstruction/fmt/pom.xml index f437d2c60c..b50655c767 100644 --- a/reconstruction/fmt/pom.xml +++ b/reconstruction/fmt/pom.xml @@ -15,21 +15,21 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-jcsg - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas swim-tools - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/ft/pom.xml b/reconstruction/ft/pom.xml index b927455b31..368e0b947c 100644 --- a/reconstruction/ft/pom.xml +++ b/reconstruction/ft/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -21,7 +21,7 @@ org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/htcc/pom.xml b/reconstruction/htcc/pom.xml index 62ae47ebf2..d6d9d081fa 100644 --- a/reconstruction/htcc/pom.xml +++ b/reconstruction/htcc/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -21,7 +21,7 @@ org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/ltcc/pom.xml b/reconstruction/ltcc/pom.xml index e7fbca1681..3a28515daf 100644 --- a/reconstruction/ltcc/pom.xml +++ b/reconstruction/ltcc/pom.xml @@ -13,14 +13,14 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/mc/pom.xml b/reconstruction/mc/pom.xml index 6a1948e16b..34cd8e3cf2 100644 --- a/reconstruction/mc/pom.xml +++ b/reconstruction/mc/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -21,7 +21,7 @@ org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/mltn/pom.xml b/reconstruction/mltn/pom.xml index e5b4fa3163..e49eef33e9 100644 --- a/reconstruction/mltn/pom.xml +++ b/reconstruction/mltn/pom.xml @@ -14,7 +14,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -34,13 +34,13 @@ org.jlab.clas clas-io - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/pom.xml b/reconstruction/pom.xml index b34e01e9f5..f32072f579 100644 --- a/reconstruction/pom.xml +++ b/reconstruction/pom.xml @@ -3,14 +3,14 @@ org.jlab.clas reconstruction - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT pom org.jlab.clas clas12rec ../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/raster/pom.xml b/reconstruction/raster/pom.xml index 8d1915a7b1..470f16616f 100644 --- a/reconstruction/raster/pom.xml +++ b/reconstruction/raster/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -21,7 +21,7 @@ org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/rich/pom.xml b/reconstruction/rich/pom.xml index dfd732f459..3159ad087c 100644 --- a/reconstruction/rich/pom.xml +++ b/reconstruction/rich/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -21,13 +21,13 @@ org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-jcsg - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/rtpc/pom.xml b/reconstruction/rtpc/pom.xml index f07ae42fa1..87669b98f7 100644 --- a/reconstruction/rtpc/pom.xml +++ b/reconstruction/rtpc/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -21,12 +21,12 @@ org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-tracking - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT compile diff --git a/reconstruction/swaps/pom.xml b/reconstruction/swaps/pom.xml index 61a9ce2a57..57f0e7b5d6 100644 --- a/reconstruction/swaps/pom.xml +++ b/reconstruction/swaps/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -21,19 +21,19 @@ org.jlab.clas clas-detector - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-io - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-reco - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/tof/pom.xml b/reconstruction/tof/pom.xml index c11bc83555..67ebebb4b0 100644 --- a/reconstruction/tof/pom.xml +++ b/reconstruction/tof/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -21,7 +21,7 @@ org.jlab.clas clas-jcsg - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/urwell/pom.xml b/reconstruction/urwell/pom.xml index dd42f66af0..9501ec4ebb 100644 --- a/reconstruction/urwell/pom.xml +++ b/reconstruction/urwell/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -21,13 +21,13 @@ org.jlab.clas clas-detector - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT org.jlab.clas clas-analysis - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT diff --git a/reconstruction/vtx/pom.xml b/reconstruction/vtx/pom.xml index 5bfa4ca14b..431dec92cc 100644 --- a/reconstruction/vtx/pom.xml +++ b/reconstruction/vtx/pom.xml @@ -13,7 +13,7 @@ org.jlab.clas clas12rec ../../parent/pom.xml - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT @@ -33,13 +33,13 @@ org.jlab.clas swim-tools - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar org.jlab.clas clas-tracking - 10.0.0-SNAPSHOT + 10.0.1-SNAPSHOT jar