www.pudn.com > WCDMA.rar > Sim.h


///////////////////////////////////////////// 
//  Class Definitions if SimConfigClass and ErrorRunClass 
// 
// Copyright 2002 The Mobile and Portable Radio Research Group 
// 
///////////////////////////////////////////// 
 
 
class SimConfigClass 
{ 
public: 
	unsigned	S_CCPCHformatID;	//Format ID for S_CCPCH 
	unsigned	PDSCHformatID;		//Format ID for PDSCH 
	unsigned	DesiredDPCHformatID;//Format ID for Desired DPCH 
	unsigned	Num_DPCH;			//Number of remaining DPCHs 
	unsigned	NumDPCCHforCPCH;	//Number of DPCCHs for CPCH 
	unsigned	NumS_CPICH;			//Number of S_CPICH 
	bool		STTDflag;			//STTD flag 
	unsigned	*OtherDPCHformatID;	//Format ID for remaining DPCHs 
	unsigned	PulseLength;		//Pulse length 
	unsigned	SamplesPerChip;		//Oversampling rate 
	unsigned	MPathComponents;	//Number of Multipath Components 
	double		EbNo_dB;			//EbNo in dB 
	double		Velocity;			//Velocity in km/hr 
	double		*Delays;			//Delay of each multipath component 
	double		*Amplitudes;		//Amplitude of each multipath component 
	unsigned	Iterations;			//Number of Frames to be processed 
}; 
 
class ErrorRunClass 
{ 
public: 
	unsigned	Length;		//Number of elements in the array 
	unsigned	*Array;		//The array itself 
};