Changeset 7182 for trunk/MagicSoft
- Timestamp:
- 07/12/05 15:28:51 (19 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7181 r7182 21 21 22 22 -*-*- END OF LINE -*-*- 23 24 2005/07/12 Daniela Dorner 25 26 * automatic-exclusions.rc: 27 - added two automatic exclusions 28 29 * datacenter/macros/findcacofiles.C: 30 - adapted query to ensure, that only existing caco-files are 31 searched 32 33 * datacenter/macros/getdolist.C: 34 - changed query to make sure, that new data is processed first 35 36 * datacenter/macros/resetallruns.C: 37 - changed query to allow manual interaction in RunProcessStatus 38 39 * datacenter/scripts/runganymed: 40 - fixed bug in choice of rc-file 41 42 23 43 24 44 2005/07/12 Thomas Bretz -
trunk/MagicSoft/Mars/automatic-exclusions.rc
r6933 r7182 21 21 key17.Cond: fProjectName like '%test%' 22 22 #key17.SpecialRunCond: 23 24 #FlagIsTest: 25 key24.Join1: TestFlag 26 #key24.Join2: 27 key24.Cond: fTestFlagName='Test' 28 #key24.SpecialRunCond: 23 29 24 30 #ProjectLikeClose: … … 49 55 key3.Join1: Project 50 56 key3.Join2: CalibrationScript 51 key3.Cond: fProjectName like binary '%CL%' or fCalibrationScriptName ='100_ContinuosLight'57 key3.Cond: fProjectName like binary '%CL%' or fCalibrationScriptName like '%ContinuosLight' 52 58 #key3.SpecialRunCond: 53 59 -
trunk/MagicSoft/Mars/datacenter/macros/findcacofiles.C
r7112 r7182 60 60 cout << endl; 61 61 62 TString query="SELECT fRunNumber FROM RunProcessStatus WHERE IsNull(fCaCoFileFound) "; 63 query+=" and fRunNumber > 10000 and not IsNull(fCCFileAvail)"; 62 TString query="SELECT RunProcessStatus.fRunNumber FROM RunProcessStatus "; 63 query+=" LEFT JOIN RunData on RunData.fRunNumber=RunProcessStatus.fRunNumber "; 64 query+=" WHERE IsNull(fCaCoFileFound) and fExcludedFDAKEY=1 "; 65 query+=" and RunProcessStatus.fRunNumber > 10000 and not IsNull(fCCFileAvail)"; 64 66 65 67 TSQLResult *res = serv.Query(query); -
trunk/MagicSoft/Mars/datacenter/macros/getdolist.C
r7112 r7182 110 110 } 111 111 112 query+=Form(" ORDER BY %s.%s DESC ", table.Data(), rc.GetValue(table+".Primary", "")); 113 112 114 cout << "query: " << query << endl; 113 115 -
trunk/MagicSoft/Mars/datacenter/macros/resetallruns.C
r7112 r7182 95 95 query+=Form(", fCaCoFileFound=%d", atoi(runnumber)); 96 96 97 query+=Form(" WHERE fRunNumber=%d ", atoi(runnumber));97 query+=Form(" WHERE fRunNumber=%d and %s!='1970-01-01 00:00:00'", atoi(runnumber), column.Data()); 98 98 99 99 cout << "q2: " << query << endl; -
trunk/MagicSoft/Mars/datacenter/scripts/runganymed
r7141 r7182 36 36 datetime=`date +%F-%H-%M-%S` 37 37 year=`date +%Y` 38 pno= 4 # number of processes, i.e. number of todo-files38 pno=24 # number of processes, i.e. number of todo-files 39 39 40 40 todofile=$listpath/ToDo-$table-$column … … 184 184 wobble=`grep 'WobbleMode:' $datasetfile` >> $scriptlog 2>&1 185 185 wobble2=`echo $wobble | grep ^\#` >> $scriptlog 2>&1 186 if [ "$ mode2" = "" ]186 if [ "$wobble2" = "" ] 187 187 then 188 188 mode="wobble" >> $scriptlog 2>&1
Note:
See TracChangeset
for help on using the changeset viewer.