--- DarthVader/S4Level2/src/S4Level2.cpp 2006/06/30 09:22:01 1.2 +++ DarthVader/S4Level2/src/S4Level2.cpp 2006/07/21 11:01:40 1.3 @@ -9,6 +9,20 @@ S4calibrated = 0.; S4adc = 0.; } +/** + * Fills a struct cS4Level2 with values from a S4Level2 object (to put data into a F77 common). + */ +void S4Level2::GetLevel2Struct(cS4Level2 *l2) const{ + l2->S4calibrated = S4calibrated; + l2->S4adc = S4adc; + +} + +void S4Level2::SetFromLevel2Struct(cS4Level2 *l2){ + S4calibrated = l2->S4calibrated; + S4adc = l2->S4adc; +} + ClassImp(S4Level2)