- Timestamp:
- 10/21/09 09:52:52 (15 years ago)
- Location:
- trunk/MagicSoft/Cosy
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/candrv/canopen.cc
r9132 r9515 631 631 WORD_t CanOpen::CobId(BYTE_t node, BYTE_t fcode) const 632 632 { 633 return (fcode<<7) | node&0x1f;634 } 633 return (fcode<<7) | (node&0x1f); 634 } -
trunk/MagicSoft/Cosy/caos/Ring.cc
r8998 r9515 2 2 3 3 #include <iostream> 4 5 #include <math.h> 4 6 5 7 #include "Led.h" -
trunk/MagicSoft/Cosy/gui/MGEmbeddedCanvas.cc
r8820 r9515 8 8 9 9 #include <iostream> 10 11 #include <math.h> 10 12 11 13 #include <TList.h> -
trunk/MagicSoft/Cosy/tcpip/MDriveCom.cc
r9445 r9515 2 2 3 3 #include <iostream> 4 5 #include <TObjArray.h> 4 6 5 7 #include "MAstro.h" -
trunk/MagicSoft/Cosy/tpoint/TPointStar.h
r8823 r9515 36 36 37 37 Double_t GetMag() const { return fMag; } 38 Double_t GetResidual(Double_t *err=0) const; 38 Double_t GetResidual(Double_t *err) const; 39 Double_t GetResidual() const; 39 40 40 41 void operator=(TPointStar &set) -
trunk/MagicSoft/Cosy/videodev/FilterLed.cc
r9439 r9515 2 2 3 3 #include <memory.h> // memset 4 #include <math.h> 4 5 #include <iostream> // cout 6 7 #include <TMath.h> 5 8 6 9 #include "Led.h" … … 406 409 407 410 // 254 because b<=max and not b<max 408 const double sdev = TMath::Sqrt(sq-sum*sum);411 const double sdev = sqrt(sq-sum*sum); 409 412 const byte max = sum+fCut*sdev>254 ? 254 : (byte)(sum+fCut*sdev); 410 413
Note:
See TracChangeset
for help on using the changeset viewer.