DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: B T

⟦2c220534e⟧ TextFile

    Length: 1540 (0x604)
    Types: TextFile
    Names: »B«

Derivation

└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
    └─⟦5cb1d1d7f⟧ »DATA« 
        └─⟦3b1ee7bd8⟧ 
            └─⟦this⟧ 

TextFile

separate (Tracker.Report_Generator.List_By_Person)


procedure Print_Pr_Total is
    ----------------------------------------------------------------------
    --|
    --|  NAME:  PRINT_PR_TOTAL
    --|
    --|  OVERVIEW:
    --|    This procedure prints out the total statics for the person. This
    --|    includes the total remaining man-hours of work to complete this
    --|    milestone, the total original size, the total current size, and
    --|    the average complexity.
    --|
    --|  EXCEPTIONS HANDLED:
    --|    none
    --|
    --|  HISTORY:
    --|    written by   Bonnie Burkhardt   March 1985
    --|
    ----------------------------------------------------------------------

begin
    -- underline columns
    Set_Col (Report_File, 84);
    Put (Report_File, Header_Lines (84 .. 132));
    New_Line (Report_File);

    -- print totals
    Set_Col (Report_File, 74);
    Put (Report_File, "TOTALS");
    Set_Col (Report_File, 83);
    Put (Report_File, Tot_Orig, 6);
    Set_Col (Report_File, 90);
    Put (Report_File, Tot_Currnt, 6);
    Set_Col (Report_File, 97);
    Put (Report_File, Tot_Eq_New, 6);

    if Ele_In_Pr > 0 then
        Set_Col (Report_File, 104);
        Put (Report_File, Tot_Cpxy / Float (Ele_Count), 1, 1, 0);
    end if;

    Set_Col (Report_File, 107);
    Put (Report_File, Tot_Hours, 6, 1, 0);
    New_Line (Report_File);

    -- reset counters
    Ele_Count := 0;
    Tot_Currnt := 0;
    Tot_Eq_New := 0;
    Tot_Orig := 0;
    Tot_Cpxy := 0.0;
    Tot_Hours := 0.0;
end Print_Pr_Total;