Changeset 986
- Timestamp:
- 10/24/01 14:51:21 (23 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MFilterList.cc
r858 r986 232 232 // one the option string must conatin a "v" 233 233 // 234 void MFilterList::Print(Option_t *opt) 234 void MFilterList::Print(Option_t *opt) const 235 235 { 236 236 TString str(opt); -
trunk/MagicSoft/Mars/mbase/MFilterList.h
r961 r986 42 42 Bool_t PostProcess(); 43 43 44 void Print(Option_t *opt = "") ;44 void Print(Option_t *opt = "") const; 45 45 46 46 ClassDef(MFilterList, 0) // List to combine several filters logically -
trunk/MagicSoft/Mars/mbase/MParContainer.cc
r855 r986 132 132 // Print MParContainer name and title. 133 133 // 134 void MParContainer::Print(Option_t *) 134 void MParContainer::Print(Option_t *) const 135 135 { 136 136 *fLog <<"OBJ: " << IsA()->GetName() << "\t" << GetName() << "\t" << GetTitle() << endl; -
trunk/MagicSoft/Mars/mbase/MParContainer.h
r858 r986 64 64 virtual void SetTitle(const char *title=""); // *MENU* 65 65 virtual void ls(Option_t *option=""); 66 virtual void Print(Option_t *option="") ;66 virtual void Print(Option_t *option="") const; 67 67 virtual Int_t Sizeof() const; 68 68 -
trunk/MagicSoft/Mars/mbase/MParList.cc
r984 r986 358 358 // if object is not existing in the list try to create one 359 359 // 360 *fLog << dbginf << "Object '" << oname << "' of type '" << cname << "'not found... creating." << endl;360 *fLog << dbginf << "Object '" << oname << "' [" << cname << "] not found... creating." << endl; 361 361 362 362 // … … 406 406 // print some information about the current status of MParList 407 407 // 408 void MParList::Print(Option_t *t) 409 { 410 *fLog << dbginf << "ParList: " << this->GetName() << " <" << this->GetTitle() << ">" << endl;408 void MParList::Print(Option_t *t) const 409 { 410 *fLog << dbginf << "ParList: " << GetName() << " <" << GetTitle() << ">" << endl; 411 411 *fLog << endl; 412 412 } -
trunk/MagicSoft/Mars/mbase/MParList.h
r984 r986 74 74 void SetOwner(Bool_t enable=kTRUE); 75 75 76 void Print(Option_t *t = NULL) ;76 void Print(Option_t *t = NULL) const; 77 77 78 78 ClassDef(MParList, 0) // list of parameter containers (MParContainer) -
trunk/MagicSoft/Mars/mbase/MTime.cc
r858 r986 39 39 ClassImp(MTime); 40 40 41 void MTime::Print(Option_t *) 41 void MTime::Print(Option_t *) const 42 42 { 43 43 fLog->setf(ios::showbase); -
trunk/MagicSoft/Mars/mbase/MTime.h
r458 r986 51 51 ~MTime() {} 52 52 53 void Print(Option_t *t=NULL) ;53 void Print(Option_t *t=NULL) const; 54 54 55 55 void SetTime(UInt_t t1, UInt_t t0) -
trunk/MagicSoft/Mars/mgui/MGeomCam.cc
r977 r986 120 120 // Prints the Geometry information of all pixels in the camera 121 121 // 122 void MGeomCam::Print(Option_t *) 122 void MGeomCam::Print(Option_t *) const 123 123 { 124 124 // -
trunk/MagicSoft/Mars/mgui/MGeomCam.h
r977 r986 35 35 MGeomPix &operator[](Int_t i) const; 36 36 37 virtual void Print(Option_t *opt=NULL) ;37 virtual void Print(Option_t *opt=NULL) const; 38 38 39 39 ClassDef(MGeomCam, 1) // Geometry base class for the camera -
trunk/MagicSoft/Mars/mgui/MGeomPix.cc
r963 r986 77 77 // Print the geometry information of one pixel. 78 78 // 79 void MGeomPix::Print(Option_t *opt) 79 void MGeomPix::Print(Option_t *opt) const 80 80 { 81 81 // information about a pixel -
trunk/MagicSoft/Mars/mgui/MGeomPix.h
r961 r986 20 20 MGeomPix(Float_t x=0, Float_t y=0, Float_t r=0); 21 21 22 void Print(Option_t *opt=NULL) ;22 void Print(Option_t *opt=NULL) const; 23 23 24 24 void Set (Float_t x, Float_t y, Float_t r) { fX=x; fY=y; fR=r; } -
trunk/MagicSoft/Mars/mgui/MHexagon.cc
r959 r986 243 243 // print/dump this hexagon with its attributes 244 244 // 245 void MHexagon::Print(Option_t *) 245 void MHexagon::Print(Option_t *) const 246 246 { 247 247 cout << GetName() << ": X=" << fX << " Y=" << fY << "R=" << fD << endl; -
trunk/MagicSoft/Mars/mgui/MHexagon.h
r961 r986 50 50 virtual void Paint(Option_t *Option=""); 51 51 virtual void PaintHexagon(Float_t x, Float_t y, Float_t d); 52 virtual void Print(Option_t *Option="") ;52 virtual void Print(Option_t *Option="") const; 53 53 54 54 ClassDef(MHexagon, 0) // A hexagon for MAGIC -
trunk/MagicSoft/Mars/mhist/MHMcEnergy.cc
r970 r986 209 209 // Write the threshold and its error in the standard output 210 210 // 211 void MHMcEnergy::Print(Option_t*) 211 void MHMcEnergy::Print(Option_t*) const 212 212 { 213 213 cout << "Threshold: " << fThreshold << " +- " << fThresholdErr << endl; -
trunk/MagicSoft/Mars/mhist/MHMcEnergy.h
r970 r986 50 50 void Draw(Option_t* option = ""); 51 51 TObject *DrawClone(Option_t* option = "") const; 52 void Print(Option_t* option = NULL) ;52 void Print(Option_t* option = NULL) const; 53 53 54 54 ClassDef(MHMcEnergy, 1) // Histogram container for montecarlo energy threshold -
trunk/MagicSoft/Mars/mhist/MHMcRate.cc
r970 r986 194 194 // print the trigger rate 195 195 // 196 void MHMcRate::Print(Option_t *) 196 void MHMcRate::Print(Option_t *) const 197 197 { 198 198 *fLog << "Incident rate " << fShowerRate << " Hz " << endl; -
trunk/MagicSoft/Mars/mhist/MHMcRate.h
r970 r986 55 55 void CalcRate(Float_t trig, Float_t anal, Float_t simu); 56 56 57 void Print(Option_t *o=NULL) ;57 void Print(Option_t *o=NULL) const; 58 58 59 59 void Draw(Option_t *o=NULL);
Note:
See TracChangeset
for help on using the changeset viewer.