Print

Print


Author: mccaky
Date: Wed Dec 10 13:17:19 2014
New Revision: 1675

Log:
Changed visibility of EcalLed fields.

Modified:
    java/trunk/conditions/src/main/java/org/hps/conditions/ecal/EcalLed.java

Modified: java/trunk/conditions/src/main/java/org/hps/conditions/ecal/EcalLed.java
 =============================================================================
--- java/trunk/conditions/src/main/java/org/hps/conditions/ecal/EcalLed.java	(original)
+++ java/trunk/conditions/src/main/java/org/hps/conditions/ecal/EcalLed.java	Wed Dec 10 13:17:19 2014
@@ -20,7 +20,7 @@
      * Get the ECAL channel ID.
      * @return The ECAL channel ID.
      */
-    int getEcalChannelId() {
+    public int getEcalChannelId() {
         return getFieldValue("ecal_channel_id");
     }
 
@@ -28,7 +28,7 @@
      * Get the crate number assigned to this crystal.
      * @return The crate number.
      */
-    int getCrateNumber() {
+    public int getCrateNumber() {
         return getFieldValue("crate");
     }
 
@@ -36,7 +36,7 @@
      * Get the LED number assigned to this crystal.
      * @return The LED number.
      */
-    int getLedNumber() {
+    public int getLedNumber() {
         return getFieldValue("number");
     }
 
@@ -44,7 +44,7 @@
      * Get the time delay of this channel.
      * @return The time delay.
      */
-    double getTimeDelay() {
+    public double getTimeDelay() {
         return getFieldValue("time_delay");
     }
 
@@ -52,7 +52,7 @@
      * Get the amplitude high setting.
      * @return The amplitude high setting.
      */
-    double getAmplitudeHigh() {
+    public double getAmplitudeHigh() {
         return getFieldValue("amplitude_high");
     }
 
@@ -60,7 +60,7 @@
      * Get the amplitude low setting.
      * @return The amplitude low setting.
      */
-    double getAmplitudeLow() {
+    public double getAmplitudeLow() {
         return getFieldValue("amplitude_low");
     }
 }