Changeset 7085 for trunk/MagicSoft/Mars/datacenter
- Timestamp:
- 05/23/05 11:55:11 (19 years ago)
- Location:
- trunk/MagicSoft/Mars/datacenter/macros
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/macros/fillcalib.C
r7084 r7085 171 171 meani = TMath::Nint(meani*10)/10.; 172 172 rmsi = TMath::Nint(rmsi*10)/10.; 173 TString meaninner = Form("% 4.1f", meani);174 TString rmsinner = Form("% 4.1f", rmsi);173 TString meaninner = Form("%5.1f", meani); 174 TString rmsinner = Form("%5.1f", rmsi); 175 175 176 176 … … 187 187 meano = TMath::Nint(meano*10)/10.; 188 188 rmso = TMath::Nint(rmso*10)/10.; 189 TString meanouter = Form("% 4.1f", meano);190 TString rmsouter = Form("% 4.1f", rmso);189 TString meanouter = Form("%5.1f", meano); 190 TString rmsouter = Form("%5.1f", rmso); 191 191 192 192 … … 209 209 meanconvi = TMath::Nint(meanconvi*10)/10.; 210 210 meanconvo = TMath::Nint(meanconvo*10)/10.; 211 TString meanconvinner=Form("% 4.1f", meanconvi);212 TString meanconvouter=Form("% 4.1f", meanconvo);211 TString meanconvinner=Form("%6.2f", meanconvi); 212 TString meanconvouter=Form("%6.2f", meanconvo); 213 213 214 214 … … 229 229 cout << " Isolated: (i/o) " << Form("%3d %3d", (int)isoin, (int)isoout) << endl; // Isolated (unbrauchbar) 230 230 cout << " Max.Cluster: " << Form("%3d", (int)clumax) << endl; // Max Cluster 231 cout << " Arr Time inner: " << Form("% 4.1f +- %4.1f", meani, rmsi) << endl;232 cout << " Arr Time outer: " << Form("% 4.1f +- %4.1f", meano, rmso) << endl;233 cout << " Mean Conv inner: " << Form("% 4.1f", meanconvi) << endl;234 cout << " Mean Conv outer: " << Form("% 4.1f", meanconvo) << endl;231 cout << " Arr Time inner: " << Form("%5.1f +- %5.1f", meani, rmsi) << endl; 232 cout << " Arr Time outer: " << Form("%5.1f +- %5.1f", meano, rmso) << endl; 233 cout << " Mean Conv inner: " << Form("%6.2f", meanconvi) << endl; 234 cout << " Mean Conv outer: " << Form("%6.2f", meanconvo) << endl; 235 235 236 236 TString query; -
trunk/MagicSoft/Mars/datacenter/macros/setupdb.C
r7062 r7085 520 520 " fArrTimeMeanOuter FLOAT(5,1) NOT NULL," 521 521 " fArrTimeRmsOuter FLOAT(5,1) NOT NULL," 522 " fConvFactorInner FLOAT( 5,1) NOT NULL,"523 " fConvFactorOuter FLOAT( 5,1) NOT NULL,"522 " fConvFactorInner FLOAT(6,2) NOT NULL," 523 " fConvFactorOuter FLOAT(6,2) NOT NULL," 524 524 " fLastUpdate TIMESTAMP" 525 525 ")"));
Note:
See TracChangeset
for help on using the changeset viewer.