Changeset 2425
- Timestamp:
- 10/23/03 19:38:30 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2424 r2425 1 1 -*-*- END OF LINE -*-*- 2 2003/10/23: Abelardo Moralejo 3 4 * mhistmc/MHMcEnergyMigration.cc 5 - Changed the Draw procedure: with new root versions (3.04, 3.05) 6 the result of the used drawing options was different from what 7 we had in 3.02, and the graphics output had become unreadable. 8 Replacing some Draw() calls by DrawCopy() has solved the problem. 9 10 2 11 2003/10/23: Thomas Bretz 3 12 -
trunk/MagicSoft/Mars/mhistmc/MHMcEnergyMigration.cc
r2262 r2425 209 209 h2pfx->SetBit(kCanDelete); 210 210 h2pfx->SetFillColor(41); 211 h2pfx->SetFillStyle(1001); 211 212 h2pfx->SetMinimum(minEest); 212 213 h2pfx->SetStats(kFALSE); 213 h2pfx->Draw ("E3");214 h2pfx->DrawCopy("E3"); 214 215 215 216 h2->SetBit(kCanDelete); … … 220 221 h2pfx->SetLineColor(2); 221 222 h2pfx->SetLineWidth(2); 222 h2pfx->Draw("L,histo,same"); 223 h2pfx->SetFillColor(0); 224 h2pfx->DrawCopy("C,hist,same"); 223 225 h2pfx->SetDirectory(NULL); 224 226 225 227 pad2->cd(2); 228 226 229 gPad->SetBorderMode(0); 227 230 gPad->SetLogx(); … … 235 238 h2pfx->SetBit(kCanDelete); 236 239 h2pfx->SetFillColor(41); 240 h2pfx->SetFillStyle(1001); 237 241 h2pfx->GetYaxis()->SetTitleOffset(1.4); 238 242 h2pfx->SetStats(kFALSE); 239 h2pfx->Draw ("E3");243 h2pfx->DrawCopy("E3"); 240 244 h2->SetFillColor(1); 241 245 h2->Draw("same,box"); … … 243 247 h2pfx->SetLineColor(2); 244 248 h2pfx->SetLineWidth(2); 245 h2pfx->Draw("L,histo,same"); 249 h2pfx->SetFillColor(0); 250 h2pfx->DrawCopy("C,hist,same"); 246 251 h2pfx->SetDirectory(NULL); 247 252 … … 258 263 h2pfx->SetBit(kCanDelete); 259 264 h2pfx->SetFillColor(41); 265 h2pfx->SetFillStyle(1001); 260 266 h2pfx->GetYaxis()->SetTitleOffset(1.4); 261 267 h2pfx->SetStats(kFALSE); 262 268 h2pfx->SetMinimum(-1.); 263 269 h2pfx->SetMaximum(1.); 264 h2pfx->Draw ("E3");270 h2pfx->DrawCopy("E3"); 265 271 266 272 h2->SetFillColor(1); … … 269 275 h2pfx->SetLineColor(2); 270 276 h2pfx->SetLineWidth(2); 271 h2pfx->Draw("L,histo,same"); 277 h2pfx->SetFillColor(0); 278 h2pfx->DrawCopy("L,histo,same"); 272 279 h2pfx->SetDirectory(NULL); 273 280
Note:
See TracChangeset
for help on using the changeset viewer.