Changeset 7961 for trunk/MagicSoft/Mars/datacenter/macros
- Timestamp:
- 08/30/06 13:03:36 (18 years ago)
- Location:
- trunk/MagicSoft/Mars/datacenter/macros
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/macros/filldotrun.C
r7871 r7961 654 654 cout << " <" << n << "> " << (dummy?"DUMMY":"") << endl; 655 655 656 return n<0 ? 0: 1;656 return n<0 ? 2 : 1; 657 657 } 658 658 … … 669 669 670 670 if (n<0) 671 return 0;671 return 2; 672 672 } 673 673 -
trunk/MagicSoft/Mars/datacenter/macros/insertdataset.C
r7460 r7961 150 150 cout << "Error - could not get sourcename from DB -> " << flush; 151 151 cout << "maybe you have the wrong sourcename in your datasetfile" << endl; 152 return 0;152 return 2; 153 153 } 154 154 … … 172 172 { 173 173 cout << "Error - could not insert dataset" << endl; 174 return 0;174 return 2; 175 175 } 176 176 delete res; … … 185 185 { 186 186 cout << "Error - could not insert dataset" << endl; 187 return 0;187 return 2; 188 188 } 189 189 delete res; … … 192 192 { 193 193 cout << number << " already exists... " << endl; 194 return 0;194 return 3; 195 195 } 196 196
Note:
See TracChangeset
for help on using the changeset viewer.