001package cnslab.cnsnetwork;
002/**
003 * Same as FireEvent but AFireEvent stored the avalancheId
004 * 
005 * @author Yi Dong
006 */
007public class AFireEvent extends FireEvent
008{
009        public AFireEvent(int index ,double time, int sourceId, int avalancheId) {
010                super(index,time);
011                this.avalancheId =avalancheId;
012                this.sourceId = sourceId;
013        }
014
015        /** 
016         *avalanche Id it belongs to 
017         */
018        public int avalancheId;
019
020        /** 
021         *the avalanche originated from which netHost; 
022         */
023        public int sourceId;
024
025}