Print

Print


Author: [log in to unmask]
Date: Thu Oct 30 13:10:27 2014
New Revision: 1349

Log:
Use the subclasses to retrieve the t0 shifts collection from the conditions database.   This is required in order to allow retrieval of collections specific to the test run and engineering run.

Modified:
    java/branches/hps_java_trunk_HPSJAVA-255/conditions/src/main/java/org/hps/conditions/svt/AbstractSvtConditionsConverter.java

Modified: java/branches/hps_java_trunk_HPSJAVA-255/conditions/src/main/java/org/hps/conditions/svt/AbstractSvtConditionsConverter.java
 =============================================================================
--- java/branches/hps_java_trunk_HPSJAVA-255/conditions/src/main/java/org/hps/conditions/svt/AbstractSvtConditionsConverter.java	(original)
+++ java/branches/hps_java_trunk_HPSJAVA-255/conditions/src/main/java/org/hps/conditions/svt/AbstractSvtConditionsConverter.java	Thu Oct 30 13:10:27 2014
@@ -8,7 +8,6 @@
 import org.hps.conditions.svt.SvtCalibration.SvtCalibrationCollection;
 import org.hps.conditions.svt.SvtGain.SvtGainCollection;
 import org.hps.conditions.svt.SvtShapeFitParameters.SvtShapeFitParametersCollection;
-import org.hps.conditions.svt.SvtT0Shift.SvtT0ShiftCollection;
 
 
 /**
@@ -67,10 +66,6 @@
             conditions.getChannelConstants(channel).setGain(channelGain);
         }
 
-        // Get the collection of T0 shifts from the conditions database
-        SvtT0ShiftCollection t0Shifts = this.getCollection(SvtT0ShiftCollection.class, dbConditionsManager);
-        conditions.setT0Shifts(t0Shifts);
-
         return conditions;
 	}