TypeTabulator.Process C# (CSharp) Method

Process() public method

public Process ( ) : void
return void
    public void Process()
    {
        Split (end_t);
        int cutoff = (int) (Profile.MaxSize * Threshold);

        foreach (TimeData d in Data) {
            for (int i = 0; i < d.TypeData.Length; i ++) {
                if (Profile.Metadata.TypeMax [i] < cutoff) {
                    d.OtherSize += d.TypeData [i];
                    d.TypeData [i] = 0;
                }
            }
        }
    }