Changeset 2049 for trunk/MagicSoft/Mars/mhist
- Timestamp:
- 04/30/03 15:39:34 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MHSigmaTheta.cc
r2043 r2049 72 72 fSigmaTheta.SetDirectory(NULL); 73 73 fSigmaTheta.SetName("2D-ThetaSigmabar"); 74 fSigmaTheta.SetTitle("2D: \\bar{\\sigma}_{ped}, \\Theta");74 fSigmaTheta.SetTitle("2D: Sigmabar, \\Theta"); 75 75 fSigmaTheta.SetXTitle("\\Theta [\\circ]"); 76 fSigmaTheta.SetYTitle(" \\bar{\\Theta}");76 fSigmaTheta.SetYTitle("Sigmabar"); 77 77 78 78 fSigmaPixTheta.SetDirectory(NULL); 79 79 fSigmaPixTheta.SetName("3D-ThetaPixSigma"); 80 fSigmaPixTheta.SetTitle("3D : \\Theta, Pixel Id, \\sigma_{ped}");80 fSigmaPixTheta.SetTitle("3D : \\Theta, Pixel Id, Sigma"); 81 81 fSigmaPixTheta.SetXTitle("\\Theta [\\circ]"); 82 82 fSigmaPixTheta.SetYTitle("Pixel Id"); 83 fSigmaPixTheta.SetZTitle(" \\sigma_{ped}");83 fSigmaPixTheta.SetZTitle("Sigma"); 84 84 85 85 fDiffPixTheta.SetDirectory(NULL); 86 86 fDiffPixTheta.SetName("3D-ThetaPixDiff"); 87 fDiffPixTheta.SetTitle("3D : \\Theta, Pixel Id, \\sigma_{ped}^{2}-\\bar{\\sigma}^{2}");87 fDiffPixTheta.SetTitle("3D : \\Theta, Pixel Id, Sigma^2-Sigmabar^2"); 88 88 fDiffPixTheta.SetXTitle("\\Theta [\\circ]"); 89 89 fDiffPixTheta.SetYTitle("Pixel Id"); 90 fDiffPixTheta.SetZTitle("\\sigma_{ped}^{2}-\\bar{\\sigma}^{2}"); 90 fDiffPixTheta.SetZTitle("Sigma^2-Sigmabar^2"); 91 } 92 // -------------------------------------------------------------------------- 93 // 94 // Default Destructor 95 // 96 MHSigmaTheta::~MHSigmaTheta() 97 { 98 *fLog << "MHSigmaTheta::~MHSigmaTheta was called" << endl; 91 99 } 92 100 … … 218 226 AppendPad(""); 219 227 220 pad->Divide(3, 3);228 pad->Divide(3, 2); 221 229 222 230 // draw the 2D histogram Sigmabar versus Theta … … 278 286 h->SetBit(kCanDelete); 279 287 280 pad->cd(7); 281 fSigmaTheta.Draw(opt); 282 283 pad->cd(8); 284 fDiffPixTheta.Draw(opt); 285 286 pad->cd(9); 287 fSigmaPixTheta.Draw(opt); 288 } 288 //pad->cd(7); 289 //fSigmaTheta.Draw(opt); 290 291 //pad->cd(8); 292 //fDiffPixTheta.Draw(opt); 293 294 //pad->cd(9); 295 //fSigmaPixTheta.Draw(opt); 296 } 297 298 299 300 301 302 303 304 305 -
trunk/MagicSoft/Mars/mhist/MHSigmaTheta.h
r2043 r2049 40 40 public: 41 41 MHSigmaTheta(const char *name=NULL, const char *title=NULL); 42 ~MHSigmaTheta(); 42 43 43 44 Bool_t SetupFill(const MParList *plist);
Note:
See TracChangeset
for help on using the changeset viewer.