Skip to content
Snippets Groups Projects
Select Git revision
  • 77d2d78054e0510b8f74ffe9b3384d4dd8c7ca5b
  • master default
  • mingw_gcc44
  • release_ABP1_012
  • release_ABP1_008
  • release_ABP1_006
  • release_ABP1_007
  • release_ABP1_005
  • release_ABP1_004
  • release_ABP1_003
  • pre_release_0.15
  • release_ABP1_001
  • release_ABP1_002
  • pre_release_0.13
  • pre_release_0.14
  • pre_release_0.11
  • pre_release_0.12
  • pre_release_0.10
  • pre_release_0.09
  • pre_release_0.08
20 results

boinc.Makefile.mingw.patch

Blame
  • Forked from einsteinathome / graphicsframework
    Source project has a limited visibility.
    antenna_lib.h 1.18 KiB
    // Double inclusion protection
    #ifndef ANTENNA_LIB_H
    #define ANTENNA_LIB_H
    // Structure for passing information about the GW source and detectors
    struct InputStruct {
       // orbital orientation in degrees, 0 to 180. Zero degrees has
       // orbital angular momentum pointing to the earth
       double iota;
       // orientation of long axis of ellipse, 0 to 360, in degrees CCW
       // from North
       double psi;
       // orientation of detector arms away from actual, 0 to 360, in
       // degrees CCW when viewed from directly overhead
       // Ordering is LLO, LHO, VIRGO
       double orientation[3];
    };
    
    // Structure for returning information about the response.  The array
    // elements are in the order LLO, LHO, VIRGO
    struct OutputStruct {
       // detector names, null terminated string
       char name[3][8];
       // amplitude of sin function, dimensionless
       double amp[3];
       // phase of sin function, in degrees from 0 to 360
       double phase[3];
       // time delays, in milliseconds
       double dt[3];
    };
    
    
    // Function gets antenna responses, using information in the 
    // input structure (not modified) and writing to the output structure.
    void get_antenna(struct OutputStruct *out, struct InputStruct *in);
    
    #endif // ANTENNA_LIB_H