Print

Print


Author: [log in to unmask]
Date: Fri Jan 30 16:50:29 2015
New Revision: 2017

Log:
Set the unknown methods in SSPData class to deprecated to indicate that they should not be used, as they may be moved in the near future.

Modified:
    java/trunk/ecal-readout-sim/src/main/java/org/hps/readout/ecal/triggerbank/SSPData.java

Modified: java/trunk/ecal-readout-sim/src/main/java/org/hps/readout/ecal/triggerbank/SSPData.java
 =============================================================================
--- java/trunk/ecal-readout-sim/src/main/java/org/hps/readout/ecal/triggerbank/SSPData.java	(original)
+++ java/trunk/ecal-readout-sim/src/main/java/org/hps/readout/ecal/triggerbank/SSPData.java	Fri Jan 30 16:50:29 2015
@@ -192,6 +192,7 @@
     // TODO: Get information from Andrea on what this is for. It seems
     //       to be something specialized. Maybe it should be placed in
     //       the analysis driver in which it is used?
+    @Deprecated
     public int getOrTrig() {
         int TopTime = this.getTopTrig();
         int BotTime = this.getBotTrig();
@@ -210,6 +211,7 @@
     // TODO: Get information from Andrea on what this is for. It seems
     //       to be something specialized. Maybe it should be placed in
     //       the analysis driver in which it is used?
+    @Deprecated
     public int getTopTrig() {
     	// Store the smallest found time. The time is a 10 bit value,
     	// so it must always be less than 1024. Multiply by 4 to convert
@@ -238,6 +240,7 @@
     // TODO: Get information from Andrea on what this is for. It seems
     //       to be something specialized. Maybe it should be placed in
     //       the analysis driver in which it is used?
+    @Deprecated
     public int getBotTrig() {
     	// Store the smallest found time. The time is a 10 bit value,
     	// so it must always be less than 1024. Multiply by 4 to convert
@@ -261,6 +264,7 @@
     
     // TODO: This does not seem to do anything. Can it be deleted? It
     //        is also not used anywhere.
+    @Deprecated
     public int getAndTrig() {
     	return 0;
     }