Changeset 9497
- Timestamp:
- 08/18/09 14:14:53 (15 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r9493 r9497 19 19 -*-*- END OF LINE -*-*- 20 20 21 2009/08/18 Thomas Bretz 22 23 * Makefile: 24 - replaced $OSTYPE by a call to "uname -s" converted to lower 25 case for compatibility 26 27 * mjobs/MJob.cc: 28 - output the name of the resoruce file in SetupEnv for convinience 29 30 * mjobs/MJCut.cc: 31 - write command line to output 32 33 * mbase/MEvtLoop.cc: 34 - improved some output 35 36 37 21 38 2009/08/14 Daniela Dorner 22 39 … … 179 196 - added getter for command line 180 197 181 * mjobs/MJCalibration.cc, mjobs/MJ Cut.cc, mjobs/MJSpectrum.cc,198 * mjobs/MJCalibration.cc, mjobs/MJSpectrum.cc, 182 199 mjobs/MJStar.cc, mjobs/MJCalibrateSignal.cc: 183 200 - write command line to output -
trunk/MagicSoft/Mars/Makefile
r9383 r9497 15 15 # 16 16 # 17 18 OSTYPE=$(shell uname -s | tr '[:upper:]' '[:lower:]') 19 17 20 include Makefile.conf.$(OSTYPE) 18 21 include Makefile.conf.general -
trunk/MagicSoft/Mars/NEWS
r9489 r9497 19 19 20 20 * All programs now store the command line as TNamed "CommandLine" 21 22 * the environment variable OSTYPE should now be obsolete. Instead 23 the output of "uname -s" converted to lower cases is used 21 24 22 25 ;showplot: … … 103 106 104 107 * jobmanager can be used more flexible now: via environnent variable 105 $AUTOMATIONSETU Omore than one jobmanager per user can be started108 $AUTOMATIONSETUP more than one jobmanager per user can be started 106 109 using the same MARS version 107 110 Usage: export AUTOMATIONSETUP=mysetup ; /fullpath/jobmanager -
trunk/MagicSoft/Mars/mbase/MEvtLoop.cc
r9422 r9497 1030 1030 prefix += "."; 1031 1031 1032 *fLog << inf << " Reading resources for" << prefix /*TEnv::fRcName << " from " << env.GetRcName()*/ << endl;1032 *fLog << inf << "Looking for resources with prefix " << prefix /*TEnv::fRcName << " from " << env.GetRcName()*/ << endl; 1033 1033 1034 1034 fLog->ReadEnv(env, prefix, print); … … 1042 1042 if (fParList->ReadEnv(env, prefix, print)==kERROR) 1043 1043 { 1044 *fLog << err << "ERROR - Reading Environmentfile." << endl;1044 *fLog << err << "ERROR - Reading resource file." << endl; 1045 1045 return kFALSE; 1046 1046 } … … 1100 1100 prefix += "."; 1101 1101 1102 *fLog << inf << "Writing resources :" << prefix /*TEnv::fRcName << " to " << env.GetRcName()*/ << endl;1102 *fLog << inf << "Writing resources with prefix " << prefix /*TEnv::fRcName << " to " << env.GetRcName()*/ << endl; 1103 1103 1104 1104 fLog->WriteEnv(env, prefix, print); … … 1113 1113 if (fParList->WriteEnv(env, prefix, print)!=kTRUE) 1114 1114 { 1115 *fLog << err << "ERROR - Writing Environmentfile." << endl;1115 *fLog << err << "ERROR - Writing resource file." << endl; 1116 1116 return kFALSE; 1117 1117 } -
trunk/MagicSoft/Mars/mjobs/MJCut.cc
r9374 r9497 320 320 if (fDisplay) 321 321 arr.Add(fDisplay); 322 323 TNamed cmdline("CommandLine", fCommandLine.Data()); 324 arr.Add(&cmdline); 322 325 323 326 const Int_t num = set.GetNumAnalysis(); -
trunk/MagicSoft/Mars/mjobs/MJob.cc
r9471 r9497 381 381 return kTRUE; 382 382 383 *fLog << all << "Evaluating resources from: " << fEnv->GetRcName() << endl; 384 383 385 if (!loop.ReadEnv(*fEnv, fEnvPrefix, fEnvDebug>2)) 384 386 return kFALSE;
Note:
See TracChangeset
for help on using the changeset viewer.