Changeset 361


Ignore:
Timestamp:
02/03/05 16:05:38 (19 years ago)
Author:
kil064
Message:

document where Mopra numbers come from
init -> initData

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SDAttr.cc

    r353 r361  
    4747SDAttr::SDAttr ()
    4848{
    49    init();
     49   initData();
    5050}
    5151
    5252SDAttr::SDAttr(const SDAttr& other)
    5353{
    54    init();                                 // state just private 'static' data
     54   initData();                                 // state just private 'static' data
    5555}
    5656
     
    185185}
    186186
    187 void SDAttr::init ()
    188 {
    189 // Beam efficiencies
    190 
     187void SDAttr::initData ()
     188{
     189//
     190// Mopra data from online Mopra guide.
     191//
    191192   MopEtaBeamX_.resize(3);
    192193   MopEtaBeamX_(0) = 86.0;
     
    202203   MopEtaBeam2004Y_(0) = 0.49;
    203204   MopEtaBeam2004Y_(1) = 0.44;
    204    MopEtaBeam2004Y_(2) = 0.42;                // replicated from (1)
    205 
    206 
    207 // Aperture efficiency
    208 
     205   MopEtaBeam2004Y_(2) = 0.42;
     206//
    209207   MopEtaApX_.resize(2);
    210208   MopEtaApX_(0) = 86.0;
  • trunk/src/SDAttr.h

    r353 r361  
    8888
    8989// Init private data
    90    void init();
     90   void initData();
    9191
    9292// Linear interpolation
Note: See TracChangeset for help on using the changeset viewer.