Changeset 19656 for trunk/FACT++


Ignore:
Timestamp:
09/17/19 10:03:03 (5 years ago)
Author:
tbretz
Message:
Ignore shortName for types 171,173 and 174.
File:
1 edited

Legend:

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

    r19589 r19656  
    163163            const bool is_gw = id==150 || id==151 || id==152 || id==153 || id==164;
    164164
     165            // No shortName
     166            const bool no_sn = id==171 || id==173 || id==174;
     167
    165168            // Required keywords
    166169            vector<string> missing;
     
    169172            if (author.isNull())
    170173                missing.emplace_back("Author");
    171             if (sname.isNull() && !is_gw)
     174            if (sname.isNull() && (!is_gw || !no_sn))
    172175                missing.emplace_back("shortName");
    173176            if (obsdat.isNull())
Note: See TracChangeset for help on using the changeset viewer.