Darkfold
05-23-06, 10:10 PM
Functionally, is this:
[SENSOR2]
Type = RADAR
#if between(19420201,date,19420831)
System = RadarUS_SC1
#endif
#if between(19420901,date,19460101)
System = RadarUS_SC2
#endif
the same as this:
#if between(19420201,date,19420831)
[SENSOR2]
Type = RADAR
System = RadarUS_SC1
#endif
#if between(19420901,date,19460101)
[SENSOR2]
Type = RADAR
System = RadarUS_SC2
#endif
?
[SENSOR2]
Type = RADAR
#if between(19420201,date,19420831)
System = RadarUS_SC1
#endif
#if between(19420901,date,19460101)
System = RadarUS_SC2
#endif
the same as this:
#if between(19420201,date,19420831)
[SENSOR2]
Type = RADAR
System = RadarUS_SC1
#endif
#if between(19420901,date,19460101)
[SENSOR2]
Type = RADAR
System = RadarUS_SC2
#endif
?