Print

Print


Commit in slic on MAIN
include/LcioMcpManager.hh+3-21.50 -> 1.51
src/LcioMcpManager.cc+5-31.63 -> 1.64
+8-5
2 modified files
JM: Fix for https://jira.slac.stanford.edu/browse/SLIC-156

slic/include
LcioMcpManager.hh 1.50 -> 1.51
diff -u -r1.50 -r1.51
--- LcioMcpManager.hh	5 Sep 2006 23:21:45 -0000	1.50
+++ LcioMcpManager.hh	15 Nov 2006 22:25:54 -0000	1.51
@@ -1,4 +1,4 @@
-// $Header: /cvs/lcd/slic/include/LcioMcpManager.hh,v 1.50 2006/09/05 23:21:45 jeremy Exp $
+// $Header: /cvs/lcd/slic/include/LcioMcpManager.hh,v 1.51 2006/11/15 22:25:54 jeremy Exp $
 
 #ifndef SLIC_LCIOMCPMANAGER_HH
 #define SLIC_LCIOMCPMANAGER_HH 1
@@ -126,7 +126,7 @@
     LcioMcpPrinter* m_printer;
 
     // user settings
-    double m_vertexIsNotEndpointOfParentTolerance;
+    double m_vertexIsNotEndpointOfParentTolerance;    
     double m_minimumTrackingDistance;
 
     // G4 messenger for Mcp handling
@@ -146,6 +146,7 @@
 
   public:
     static const double m_NAN;
+    static const double DEFAULT_MIN_TRACKING_DISTANCE;
   };
 }
 

slic/src
LcioMcpManager.cc 1.63 -> 1.64
diff -u -r1.63 -r1.64
--- LcioMcpManager.cc	5 Sep 2006 23:21:59 -0000	1.63
+++ LcioMcpManager.cc	15 Nov 2006 22:25:55 -0000	1.64
@@ -1,4 +1,4 @@
-// $Header: /cvs/lcd/slic/src/LcioMcpManager.cc,v 1.63 2006/09/05 23:21:59 jeremy Exp $
+// $Header: /cvs/lcd/slic/src/LcioMcpManager.cc,v 1.64 2006/11/15 22:25:55 jeremy Exp $
 #include "LcioMcpManager.hh"
 
 // slic
@@ -38,14 +38,16 @@
 {
 
   const double LcioMcpManager::m_NAN = std::sqrt((double)-1.0);
+  const double LcioMcpManager::DEFAULT_MIN_TRACKING_DISTANCE = 1.0;
 
   LcioMcpManager::~LcioMcpManager()
   {}
 
   LcioMcpManager::LcioMcpManager()
     : Module("LcioMcpManager"),
-      m_enablePrintFinal(false),
-      m_enablePrintInitial(false)
+    m_enablePrintFinal(false),
+      m_enablePrintInitial(false),
+      m_minimumTrackingDistance(DEFAULT_MIN_TRACKING_DISTANCE)
   {
     // create new Mcp messenger instance
     m_messenger = new LcioMcpMessenger();
CVSspam 0.2.8