Changeset 1835
- Timestamp:
- 03/19/03 12:36:36 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1834 r1835 1 1 -*-*- END OF LINE -*-*- 2 3 2003/03/19: Robert Wagner 4 5 * mhist/MH3.cc: 6 - changed MH3::New() such that constructor according to Thomas' 7 previous changes is supported 8 9 2 10 3 11 2003/03/19: Thomas Bretz -
trunk/MagicSoft/Mars/mhist/MH3.cc
r1832 r1835 89 89 MH3::MH3(const unsigned int dim) 90 90 : fDimension(dim>3?3:dim), fHist(NULL) 91 { 91 { 92 92 switch (fDimension) 93 93 { … … 596 596 MParContainer *MH3::New() const 597 597 { 598 cout << "1" <<endl; 598 599 MH3 *h = NULL; 600 cout << "1a" <<endl; 601 602 if (fData[0] == NULL) 603 { 604 h=new MH3(fDimension); 605 } 606 else 599 607 switch (fDimension) 600 608 {
Note:
See TracChangeset
for help on using the changeset viewer.