Fork me on GitHub

Changeset 428 in svn for trunk/Utilities/Hector


Ignore:
Timestamp:
Jun 17, 2009, 9:23:57 PM (15 years ago)
Author:
Xavier Rouby
Message:

slight change to avoid compilation warning

Location:
trunk/Utilities/Hector
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Utilities/Hector/include/H_Aperture.h

    r281 r428  
    5454                void printProperties() const;
    5555                /// Draws the aperture shape
    56                 virtual void draw(const float scale=1) const {return;};
     56                virtual void draw(const float) const {return;};
    5757                /// Sets the (x,y) position in [m]
    5858                void setPosition(const float,const float);
  • trunk/Utilities/Hector/src/H_OpticalElement.cc

    r281 r428  
    162162
    163163void H_OpticalElement::drawAperture() const {
    164         element_aperture->draw();
     164        element_aperture->draw(1);
    165165        return;
    166166}
Note: See TracChangeset for help on using the changeset viewer.