]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Draw() is not const.
authorrdm <rdm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 1 Jun 2004 20:50:26 +0000 (20:50 +0000)
committerrdm <rdm@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 1 Jun 2004 20:50:26 +0000 (20:50 +0000)
MUON/AliMUONSegmentationSlat.cxx
MUON/AliMUONSegmentationSlat.h
MUON/AliMUONSegmentationTrigger.cxx
MUON/AliMUONSegmentationTrigger.h
MUON/AliMUONSegmentationV0.cxx
MUON/AliMUONSegmentationV0.h

index a561bb1803bd80f1fdcb10bd10c8ad50bf173c3d..715e7b671d555f24bbcb5161a04fdce97107e480 100644 (file)
@@ -573,7 +573,7 @@ CreateSlatModule() const
 }
 
 
-void AliMUONSegmentationSlat::Draw(const char* opt) const
+void AliMUONSegmentationSlat::Draw(const char* opt)
 {
 // Draw method for event display
 // 
index c2dc9e21cfbe946dc9cd830eaab9aa559ccb2df2..b63991b24c6d9fc41b9cdf7b723b4a469ee8786d 100644 (file)
@@ -119,7 +119,7 @@ class AliMUONSegmentationSlat : public AliSegmentation
     // Test points for auto calibration
     virtual void GiveTestPoints(Int_t &n, Float_t *x, Float_t *y) const;
     // Draw the segmentation zones
-    virtual void Draw(const char *opt = "") const;
+    virtual void Draw(const char *opt = "");
 
     
     // Function for systematic corrections
index 082a1ce72b747fbb4c0d15b6f614fd682a03e45c..11453e3d3396284f98c42609304f4727b0a8ec99 100644 (file)
@@ -167,7 +167,7 @@ void AliMUONSegmentationTrigger::Init(Int_t chamber)
 
 }
 //------------------------------------------------------------------
-void  AliMUONSegmentationTrigger::Draw(const char * /*opt*/) const {}
+void  AliMUONSegmentationTrigger::Draw(const char * /*opt*/) {}
 //------------------------------------------------------------------
 Int_t AliMUONSegmentationTrigger::ModuleNumber(Int_t imodule){
 // returns module number (from 0 to 126) corresponding to module imodule
index 84b13c904ff4b25b89e12a804542f7b78e0bb152..55c6d8a90ad5e454cff3717bf91fca38b5025453 100644 (file)
@@ -29,7 +29,7 @@ class AliMUONSegmentationTrigger : public AliMUONSegmentationV0
     virtual void     SetHit(Float_t xhit, Float_t yhit);
     virtual void     SetHit(Float_t xhit, Float_t yhit, Float_t zhit);
     // Draw the segmentation zones
-    virtual void Draw(const char *opt="") const ;
+    virtual void Draw(const char *opt="");
  
   protected:
     Int_t                fId;                    // Identifier
index bafb319418f1d2e1dd5b17b295a7c615f4c22d9b..2ef205a8de9f98d229dfd52c6f2aa6187d13babc 100644 (file)
@@ -307,7 +307,7 @@ void  AliMUONSegmentationV0::GiveTestPoints(Int_t &n, Float_t *x, Float_t *y) co
     y[0]=x[0];
 }
 
-void AliMUONSegmentationV0::Draw(const char *) const
+void AliMUONSegmentationV0::Draw(const char *)
 {
 // Draws the segmentation zones
 //
index f1b634ce33f707051f937f15daef5b456a7cabc0..c76cbccb1232132ee452d4deec21ecc163a4eb61 100644 (file)
@@ -102,7 +102,7 @@ dummy);
     // Test points for auto calibration
     virtual void GiveTestPoints(Int_t &n, Float_t *x, Float_t *y) const;
     // Draw segmentation zones
-    virtual void Draw(const char *opt="") const;
+    virtual void Draw(const char *opt="");
     // Function for systematic corrections
     // Set the correction function
     virtual void SetCorrFunc(Int_t dum, TF1* func);