Skip to content

Commit

Permalink
Updates field star detection in scatterCluster
Browse files Browse the repository at this point in the history
  • Loading branch information
argiopetech committed Mar 11, 2015
1 parent 4cef74e commit 0da6086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scatterCluster/scatterCluster.cpp
Expand Up @@ -191,7 +191,7 @@ int main (int argc, char *argv[])

for (auto s : ret.second)
{
bool isFS = std::stoi(s.id) > 20000;
bool isFS = std::stoi(s.id) > 1000000;
if (meetsMagCutoff(settings, s) && meetsStageCutoff(s, isFS))
{
bool okay = true;
Expand Down

0 comments on commit 0da6086

Please sign in to comment.