Commit in lcsim/src/org/lcsim/contrib/onoprien/tester on MAIN
TrackingTestBase.java+5-51.2 -> 1.3
PiFinder.java+2-21.2 -> 1.3
+7-7
2 modified files
Fixed javadoc warnings

lcsim/src/org/lcsim/contrib/onoprien/tester
TrackingTestBase.java 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- TrackingTestBase.java	22 Aug 2007 19:55:42 -0000	1.2
+++ TrackingTestBase.java	21 Sep 2007 12:33:46 -0000	1.3
@@ -17,7 +17,7 @@
 
 /**
  * Abstract driver class that provides infrastructure and utility methods for testing track finders.
- * See {@link TrackingTest} and {@link TrackingTestKs} for examples of use.
+ * See {@link TrackingTest} and {@link PiTest} for examples of use.
  * <p>
  * Classes implementing particular tests should extend this class, overriding<br>
  * {@link #analyzeEvent(EventHeader)}<br>
@@ -27,12 +27,12 @@
  * {@link #mcTrackFilter(MCTrack mcTrack)},<br>
  * {@link #isReconstructed(MCTrack mcTrack)},<br>
  * {@link #isFake(RatedTrack track)},<br>
- * {@link #startOfRun()}, and {@link #endOfRun()} methods.<br>
+ * {@link #startOfRun(Detector)}, and {@link #endOfRun()} methods.<br>
  * Default implementations are provided for these methods.
  * <p>
  * Subclusses extending this driver should be added to the event processing chain
  * after track findind stage. Cheater track finder 
- * (see {@link org.lcsim.contrib.onoprien.mcTrackFinder}) should also be run before the test 
+ * (see {@link org.lcsim.recon.mcTrackFinder}) should also be run before the test 
  * to create a list of MCTracks and put it into the event. 
  * <p>
  * When the driver's {@link #process(EventHeader event)}
@@ -56,7 +56,7 @@
  * {@link #printCumulativeStatistics()}.
  *
  * @author D. Onoprienko
- * @version $Id: TrackingTestBase.java,v 1.2 2007/08/22 19:55:42 onoprien Exp $
+ * @version $Id: TrackingTestBase.java,v 1.3 2007/09/21 12:33:46 onoprien Exp $
  */
 abstract public class TrackingTestBase extends Driver {
   
@@ -272,7 +272,7 @@
    * Given current limitations of {@link TrackerHit} that has no layer information,
    * the default implementation returns <tt>true</tt> if any reconstructed 
    * tracks have been associated with MCTrack supplied as a parameter. If default
-   * implementation of {@link matchTracks(Track, MCTrack)} is used, that means
+   * implementation of {@link #matchTracks(Track, MCTrack)} is used, that means
    * requiring a reconstructed track with 3 hits common with the given MCTrack.
    */
   protected boolean isReconstructed(MCTrack mcTrack) {

lcsim/src/org/lcsim/contrib/onoprien/tester
PiFinder.java 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- PiFinder.java	22 Aug 2007 19:55:42 -0000	1.2
+++ PiFinder.java	21 Sep 2007 12:33:46 -0000	1.3
@@ -9,14 +9,14 @@
  * Cheater track finder that finds only tracks left by charged pions from K short decays.
  *
  * @author onoprien
- * @version $Id: PiFinder.java,v 1.2 2007/08/22 19:55:42 onoprien Exp $
+ * @version $Id: PiFinder.java,v 1.3 2007/09/21 12:33:46 onoprien Exp $
  */
 public class PiFinder extends MCTrackFinder {
   
   public PiFinder() {}
 
   /**
-   * Overrides {@link MCTrackFinder.filter(MCParticle)} to select charged pions from KS0 decays.
+   * Overrides {@link MCTrackFinder#filter(MCParticle)} to select charged pions from KS0 decays.
    */
   protected boolean filter(MCParticle mcParticle) {
     return super.filter(mcParticle) &&
CVSspam 0.2.8