Changeset 9068 for trunk/MagicSoft/Mars
- Timestamp:
- 08/02/08 12:11:21 (16 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9066 r9068 19 19 -*-*- END OF LINE -*-*- 20 20 21 2008/08/02 Thomas Bretz 22 23 * datacenter/scripts/dbchk: 24 - if the regular expression in sed doesn't find anything 25 nothing is replaced (this case is now handled) 26 27 * mjobs/MJPedestal.cc: 28 - removed the obsolete shift variable in PosePosCheck 29 - do not allow lo-gain starts < 0 30 31 * msignal/MExtractTimeAndCharge.cc: 32 - changed lo-gain stat sift to -1.0 (which is the valie which 33 in use anyway) 34 35 * msignal/MExtractTimeAndCharge.h: 36 - do not add the lo-gain offset wehen setting the start-shift 37 38 * msignal/MExtractor.cc: 39 - make sure Print() prints the class description 40 41 42 21 43 2008/08/01 Thomas Bretz 22 44 … … 26 48 * resources/starguider00328198.txt: 27 49 - added 50 51 * datacenter/macros/plotdb.C: 52 - added fMedNumPheInner/outer 53 - added fRelChargeRmsOuter 54 55 * mbase/MStatusDisplay.[h,cc]: 56 - added %%title%% as a possibility in the filename 57 - added some code to write an XML instead of a csv file 58 (still not in-use) 59 60 * mjobs/MJCut.cc, mjobs/MJSpectrum.cc: 61 - replaced RunNumber by FileId 62 28 63 29 64 … … 1140 1175 1141 1176 * mbase/MStatusDisplay.cc: 1142 - replaced MTime by TDatime1177 - replaced MTime by TDatime 1143 1178 1144 1179 * mcamera/MCameraRecTemp.[h,cc], mcamera/MCameraTD.[h,cc], -
trunk/MagicSoft/Mars/NEWS
r9066 r9068 28 28 * MReadTree can now read also files not written by MARS and store 29 29 the data encapsulated in emulated MParContainers 30 31 * Added the median number of photo electrons from the calibration 32 pulses to the db (fMedNumPheInner, fMedNumPheOuter) and the relative 33 error of their raw counts (fRelChargeRmsInner, fRelChargeRmsOuter) 30 34 31 35 * added a new starguider calibration valid since 15.1.08 -
trunk/MagicSoft/Mars/datacenter/scripts/dbchk
r9047 r9068 89 89 do 90 90 sequence=`echo $file | sed -e "s/^.*\/sequence0\+\([0-9]\+\)\.txt$/\1/"` 91 if [ "$sequence" = "" ] 91 if [ "$sequence" = "" ] || [ "$sequence" = "$file" ] 92 92 then 93 93 echo "No sequence file: $file" >> $scriptlog 2>&1 … … 95 95 continue 96 96 fi 97 97 98 98 var=`echo SELECT fSequenceFirst FROM Sequences WHERE fSequenceFirst=$sequence | mymysql` 99 99 if ! [ "$sequence" = "$var" ] … … 111 111 do 112 112 sequence=`echo $dir | sed -e "s/^.*\/0\+\([0-9]\+\)$/\1/"` 113 if [ "$sequence" = "" ] 113 if [ "$sequence" = "" ] || [ "$sequence" = "$dir" ] 114 114 then 115 115 echo "Invalid directory: $dir" >> $scriptlog 2>&1 … … 133 133 do 134 134 sequence=`echo $dir | sed -e "s/^.*\/0\+\([0-9]\+\)$/\1/"` 135 if [ "$sequence" = "" ] 135 if [ "$sequence" = "" ] || [ "$sequence" = "$dir" ] 136 136 then 137 137 echo "Invalid directory: $dir" >> $scriptlog 2>&1 -
trunk/MagicSoft/Mars/mjobs/MJPedestal.cc
r9017 r9068 890 890 // Set and store the new ranges 891 891 // 892 Int_t shift = 0;893 892 while (poslo2-fExtractWinLeft < lo0+0.5) 894 893 { … … 903 902 } 904 903 905 *fLog << "Changed extraction window by " << shift; 906 *fLog << "slices to hi-gain [" << hi0 << "," << hi1; 904 if (lo0<0) 905 lo0=0; 906 907 *fLog << "Changed extraction to hi-gain [" << hi0 << "," << hi1; 907 908 *fLog << "] and lo-gain [" << lo0 << "," << lo1 << "]" << endl; 908 909
Note:
See TracChangeset
for help on using the changeset viewer.