LibItsIvim_Pics.ttcn 1.68 KB
Newer Older
/**
 *  @author   ETSI / STF517
 *  @version  $URL$
 *            $Id$
 *  @desc     IVIM PICS
garciay's avatar
garciay committed
 *  @copyright   ETSI Copyright Notification
 *               No part may be reproduced except as authorized by written permission.
 *               The copyright and the foregoing restriction extend to reproduction in all media.
 *               All rights reserved.
garciay's avatar
garciay committed
    /**
     * @desc Support for IVIM generation
     * @see  ETSI TS 103 191-1 Table 3
     */
    modulepar boolean PICS_IVIM_GENERATION := true;
garciay's avatar
garciay committed
    /**
     * @desc Support for IVIM update
     * @see  ETSI TS 103 191-1 Table 3
     */
    modulepar boolean PICS_IVIM_UPDATE := true;
garciay's avatar
garciay committed
    /**
     * @desc Support for IVIM cancellation
     * @see  ETSI TS 103 191-1 Table 3
     */
    modulepar boolean PICS_IVIM_CANCELLATION := true;
garciay's avatar
garciay committed
    /**
     * @desc Support for IVIM NEGATION
     * @see  ETSI TS 103 191-1 Table 3
     */
    modulepar boolean PICS_IVIM_NEGATION := true;
garciay's avatar
garciay committed
    /**
     * @desc Support for IVIM RECEPTION
     * @see  ETSI TS 103 191-1 Table 3
     */
    modulepar boolean PICS_IVIM_RECEPTION := true;
garciay's avatar
garciay committed
    /**
     * @desc Is the IUT running in secured mode?
     */
    modulepar boolean PICS_IS_IUT_SECURED := false;
    
    /**
     * @desc Minimum time interval between IVIM generations (in seconds).
     *       Default value, as per base standard: 4s 
     * @see  ???
     */
    modulepar float PICS_T_GENIVIMMIN := 4.0;
    
    /**
     * @desc Maximum time interval between IVIM generations (in seconds).
     *       Default value, as per base standard: 10.0s 
     * @see  ???
     */
    modulepar float PICS_T_GENIVIMMAX := 10.000;
garciay's avatar
garciay committed
} // End of module LibItsIvim_Pics