Ignore:
Timestamp:
08/04/12 10:54:52 (12 years ago)
Author:
tbretz
Message:
Calculate current curve only if source is visible above 75deg. Made checks consistent.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/smartfact.cc

    r14306 r14309  
    19681968        }
    19691969
    1970         if (max<0 || cnt==0)
     1970        if (max<=0 || cnt==0)
    19711971            return make_pair(vector<float>(), make_pair(Time(), 0));
    19721972
     
    20882088                    alt.push_back(vis.first);
    20892089                    culmination[vis.second.first] = make_pair(name, vis.second.second);
    2090                 }
    2091 
    2092                 const pair<vector<float>, pair<Time, float>> lc = GetLightCondition(&pos, &observer, now.JD());
    2093                 if (lc.first.size()>0)
    2094                 {
    2095                     cur.push_back(lc.first);
    2096                     lightcond[lc.second.first] = make_pair(name, lc.second.second);
     2090
     2091                    const pair<vector<float>, pair<Time, float>> lc = GetLightCondition(&pos, &observer, now.JD());
     2092                    if (lc.first.size()>0)
     2093                    {
     2094                        cur.push_back(lc.first);
     2095                        lightcond[lc.second.first] = make_pair(name, lc.second.second);
     2096                    }
    20972097                }
    20982098
Note: See TracChangeset for help on using the changeset viewer.