Commit in lcsim/src/org/lcsim/event/base on MAIN
BaseRawTrackerHit.java+11-11.12 -> 1.13
fix bug where identifier wasn't set with partial ctor

lcsim/src/org/lcsim/event/base
BaseRawTrackerHit.java 1.12 -> 1.13
diff -u -r1.12 -r1.13
--- BaseRawTrackerHit.java	8 May 2009 18:55:18 -0000	1.12
+++ BaseRawTrackerHit.java	14 Mar 2012 00:48:43 -0000	1.13
@@ -13,7 +13,7 @@
  * 
  * @author Tony Johnson
  * @author Jeremy McCormick <[log in to unmask]>
- * @version $Id: BaseRawTrackerHit.java,v 1.12 2009/05/08 18:55:18 partridge Exp $
+ * @version $Id: BaseRawTrackerHit.java,v 1.13 2012/03/14 00:48:43 jeremy Exp $
  */
 public class BaseRawTrackerHit
 extends BaseHit
@@ -23,6 +23,16 @@
     protected long cellId;
     protected short[] adcValues;
     protected List<SimTrackerHit> simTrackerHits;
+    
+    public BaseRawTrackerHit(
+    		long id,
+    		int time,
+    		short[] adcValues) {
+    	this.cellId = id;
+    	this.compactId = new Identifier(id);
+    	this.time = time;
+    	this.adcValues = adcValues;
+    }
 
     public BaseRawTrackerHit(
             int time, 
CVSspam 0.2.12


Use REPLY-ALL to reply to list

To unsubscribe from the LCD-CVS list, click the following link:
https://listserv.slac.stanford.edu/cgi-bin/wa?SUBED1=LCD-CVS&A=1