Commit in lcsim-contrib/src/main/java/org/lcsim/contrib/onoprien/util on MAIN
job/JobManager.java+2-21.12 -> 1.13
swim/AbstractTrajectory.java+2-21.2 -> 1.3
    /IntersectionHelixZ.java+2-21.3 -> 1.4
    /Line.java+3-31.8 -> 1.9
    /ParCovMatrix.java+2-21.2 -> 1.3
    /ParVector.java+2-21.3 -> 1.4
    /Trajectory.java+3-31.2 -> 1.3
+16-16
7 modified files
Fix javadoc warnings

lcsim-contrib/src/main/java/org/lcsim/contrib/onoprien/util/job
JobManager.java 1.12 -> 1.13
diff -u -r1.12 -r1.13
--- JobManager.java	8 Jul 2009 15:59:28 -0000	1.12
+++ JobManager.java	10 Jul 2009 22:34:51 -0000	1.13
@@ -40,7 +40,7 @@
  * </ul>
  * 
  * @author D. Onoprienko
- * @version $Id: JobManager.java,v 1.12 2009/07/08 15:59:28 onoprien Exp $
+ * @version $Id: JobManager.java,v 1.13 2009/07/10 22:34:51 onoprien Exp $
  */
 public class JobManager extends org.lcsim.util.Driver implements ConditionsListener {
   
@@ -441,7 +441,7 @@
   /**
    * Activates {@link MCTruth} object creation without setting default names for any collections.
    * If this method (or <tt>setMCTruthNames(RecType, String...)</tt>) has been called, {@link MCTruth}
-   * object will be constructed and added to the event record with {@link MCTruth.KEY} key prior
+   * object will be constructed and added to the event record with <tt>MCTruth.KEY</tt> key prior
    * to running any drivers.
    */
   public void setMCTruth() {

lcsim-contrib/src/main/java/org/lcsim/contrib/onoprien/util/swim
AbstractTrajectory.java 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- AbstractTrajectory.java	22 Jan 2009 21:01:58 -0000	1.2
+++ AbstractTrajectory.java	10 Jul 2009 22:34:51 -0000	1.3
@@ -12,7 +12,7 @@
  * provided by this class throws <tt>UnsupportedOperationException</tt>.
  *
  * @author D. Onoprienko
- * @version $Id: AbstractTrajectory.java,v 1.2 2009/01/22 21:01:58 onoprien Exp $
+ * @version $Id: AbstractTrajectory.java,v 1.3 2009/07/10 22:34:51 onoprien Exp $
  */
 abstract public class AbstractTrajectory implements Trajectory {
   
@@ -38,7 +38,7 @@
   
   /**
    * Returns intersection of this trajectory with the specified surface.
-   * Implemented by forwarding the call to {@link Surface#intersect(Surface)}.
+   * Implemented by forwarding the call to {@link Surface#intersect(Trajectory)}.
    * Concrete subclasses can override.
    */
   public Intersection intersect(Surface surface) {

lcsim-contrib/src/main/java/org/lcsim/contrib/onoprien/util/swim
IntersectionHelixZ.java 1.3 -> 1.4
diff -u -r1.3 -r1.4
--- IntersectionHelixZ.java	6 Apr 2009 19:49:30 -0000	1.3
+++ IntersectionHelixZ.java	10 Jul 2009 22:34:51 -0000	1.4
@@ -10,11 +10,11 @@
  * Specialized implementation of {@link Intersection} interface suitable for use when
  * locations of intersection points are periodic along the path length of the trajectory,
  * possibly bounded to certain path length interval, and swimming the trajectory by a
- * period changes only Z coordinate. This is typically used for intersecting {@Helix} with
+ * period changes only Z coordinate. This is typically used for intersecting {@link Helix} with
  * a surface parallel to Z axis.
  *
  * @author D. Onoprienko
- * @version $Id: IntersectionHelixZ.java,v 1.3 2009/04/06 19:49:30 onoprien Exp $
+ * @version $Id: IntersectionHelixZ.java,v 1.4 2009/07/10 22:34:51 onoprien Exp $
  */
 public class IntersectionHelixZ extends IntersectionPeriodicBound {
   

lcsim-contrib/src/main/java/org/lcsim/contrib/onoprien/util/swim
Line.java 1.8 -> 1.9
diff -u -r1.8 -r1.9
--- Line.java	10 Jun 2009 17:53:52 -0000	1.8
+++ Line.java	10 Jul 2009 22:34:51 -0000	1.9
@@ -8,7 +8,7 @@
  * Straight line {@link Trajectory}.
  *
  * @author D. Onoprienko
- * @version $Id: Line.java,v 1.8 2009/06/10 17:53:52 onoprien Exp $
+ * @version $Id: Line.java,v 1.9 2009/07/10 22:34:51 onoprien Exp $
  */
 public class Line extends AbstractTrajectory {
   
@@ -77,10 +77,10 @@
   }
   
   /** 
-   * Returns covariance matrix for helix parameters in the requested representation.
+   * Returns covariance matrix for Line parameters in the requested representation.
    *
    * @param representation  Enum class that defines helix parameters representation.
-   *                        Currently either {@link CRep} or {@link VRep}.
+   *                        Currently either {@link Line.VRep} or {@link Helix.VRep}.
    */
   public <T extends Enum<T>> ParCovMatrix<T> getCovMatrix(Class<T> representation) {
     throw new UnsupportedOperationException("Covariance matrix operations are not yet implemented");  // FIXME

lcsim-contrib/src/main/java/org/lcsim/contrib/onoprien/util/swim
ParCovMatrix.java 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- ParCovMatrix.java	22 Jan 2009 21:01:58 -0000	1.2
+++ ParCovMatrix.java	10 Jul 2009 22:34:51 -0000	1.3
@@ -6,10 +6,10 @@
  * An instance of this class represents a covariance matrix of parameters that define a trajectory,
  * in a particular representation. The representation is described by enum that contains
  * constants identifying the parameters (for example, {@link Helix} parameters can be
- * described in {@link Helix.CRep} and {@link Helix.WRep} representations).
+ * described in {@link Helix.CRep} and {@link Helix.VRep} representations).
  *
  * @author D. Onoprienko
- * @version $Id: ParCovMatrix.java,v 1.2 2009/01/22 21:01:58 onoprien Exp $
+ * @version $Id: ParCovMatrix.java,v 1.3 2009/07/10 22:34:51 onoprien Exp $
  */
 public class ParCovMatrix<T extends Enum<T>> extends SymmetricMatrix {
   

lcsim-contrib/src/main/java/org/lcsim/contrib/onoprien/util/swim
ParVector.java 1.3 -> 1.4
diff -u -r1.3 -r1.4
--- ParVector.java	29 Jan 2009 20:35:41 -0000	1.3
+++ ParVector.java	10 Jul 2009 22:34:51 -0000	1.4
@@ -4,10 +4,10 @@
  * An instance of this class represents a vector of parameters that define a trajectory,
  * in a particular representation. The representation is described by enum that contains
  * constants identifying the parameters (for example, {@link Helix} parameters can be
- * described in {@link Helix.CRep} and {@link Helix.WRep} representations).
+ * described in {@link Helix.CRep} and {@link Helix.VRep} representations).
  *
  * @author D. Onoprienko
- * @version $Id: ParVector.java,v 1.3 2009/01/29 20:35:41 onoprien Exp $
+ * @version $Id: ParVector.java,v 1.4 2009/07/10 22:34:51 onoprien Exp $
  */
 public class ParVector<T extends Enum<T>> {
   

lcsim-contrib/src/main/java/org/lcsim/contrib/onoprien/util/swim
Trajectory.java 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- Trajectory.java	22 Jan 2009 21:01:58 -0000	1.2
+++ Trajectory.java	10 Jul 2009 22:34:51 -0000	1.3
@@ -7,7 +7,7 @@
  * Trajectory is characterized by its shape, origin, and direction.
  *
  * @author D. Onoprienko
- * @version $Id: Trajectory.java,v 1.2 2009/01/22 21:01:58 onoprien Exp $
+ * @version $Id: Trajectory.java,v 1.3 2009/07/10 22:34:51 onoprien Exp $
  */
 public interface Trajectory {
   
@@ -44,7 +44,7 @@
    *
    * @param representation Enum that defines a particular representation of the  trajectory
    *                       parameters. For example, {@link Helix} parameters can be
-   *                       returned in {@link Helix.CRep} and {@link Helix.WRep} representations.
+   *                       returned in {@link Helix.CRep} and {@link Helix.VRep} representations.
    */
   public <T extends Enum<T>> ParVector<T> getParameters(Class<T> representation);
 
@@ -61,7 +61,7 @@
    *
    * @param representation Enum that defines a particular representation of the  trajectory
    *                       parameters. For example, {@link Helix} parameters can be
-   *                       returned in {@link Helix.CRep} and {@link Helix.WRep} representations.
+   *                       returned in {@link Helix.CRep} and {@link Helix.VRep} representations.
    */
   public <T extends Enum<T>> ParCovMatrix<T> getCovMatrix(Class<T> representation);
 
CVSspam 0.2.8