1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-12-14 12:10:34 +00:00

Sort private members

This commit is contained in:
Carles Fernandez 2020-07-13 13:40:59 +02:00
parent 9d07a959cf
commit 06dbbca314
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 23 additions and 15 deletions

View File

@ -177,27 +177,33 @@ public:
private: private:
pcps_acquisition_sptr acquisition_; pcps_acquisition_sptr acquisition_;
std::vector<std::complex<float>> code_;
std::weak_ptr<ChannelFsm> channel_fsm_;
Gnss_Synchro* gnss_synchro_;
Acq_Conf acq_parameters_; Acq_Conf acq_parameters_;
size_t item_size_;
std::string item_type_; std::string item_type_;
std::string dump_filename_; std::string dump_filename_;
std::string role_; std::string role_;
bool acq_pilot_;
bool acq_iq_; size_t item_size_;
int64_t fs_in_;
float threshold_;
int doppler_center_;
unsigned int vector_length_; unsigned int vector_length_;
unsigned int code_length_; unsigned int code_length_;
unsigned int channel_; unsigned int channel_;
std::weak_ptr<ChannelFsm> channel_fsm_;
unsigned int doppler_max_; unsigned int doppler_max_;
unsigned int doppler_step_; unsigned int doppler_step_;
int doppler_center_;
unsigned int sampled_ms_; unsigned int sampled_ms_;
unsigned int in_streams_; unsigned int in_streams_;
unsigned int out_streams_; unsigned int out_streams_;
int64_t fs_in_;
float threshold_; bool acq_pilot_;
std::vector<std::complex<float>> code_; bool acq_iq_;
Gnss_Synchro* gnss_synchro_;
}; };
#endif // GNSS_SDR_GALILEO_E5B_PCPS_ACQUISITION_H #endif // GNSS_SDR_GALILEO_E5B_PCPS_ACQUISITION_H

View File

@ -193,20 +193,22 @@ private:
static const uint32_t shl_code_bits = 65536; // shift left by 10 bits static const uint32_t shl_code_bits = 65536; // shift left by 10 bits
pcps_acquisition_fpga_sptr acquisition_fpga_; pcps_acquisition_fpga_sptr acquisition_fpga_;
std::vector<uint32_t> d_all_fft_codes_; // memory that contains all the code ffts
std::weak_ptr<ChannelFsm> channel_fsm_;
Gnss_Synchro* gnss_synchro_;
std::string item_type_; std::string item_type_;
std::string dump_filename_; std::string dump_filename_;
std::string role_; std::string role_;
bool acq_pilot_; int32_t doppler_center_;
bool acq_iq_;
uint32_t channel_; uint32_t channel_;
std::weak_ptr<ChannelFsm> channel_fsm_;
uint32_t doppler_max_; uint32_t doppler_max_;
uint32_t doppler_step_; uint32_t doppler_step_;
int32_t doppler_center_;
unsigned int in_streams_; unsigned int in_streams_;
unsigned int out_streams_; unsigned int out_streams_;
Gnss_Synchro* gnss_synchro_; bool acq_pilot_;
std::vector<uint32_t> d_all_fft_codes_; // memory that contains all the code ffts bool acq_iq_;
}; };
#endif // GNSS_SDR_GALILEO_E5B_PCPS_ACQUISITION_FPGA_H #endif // GNSS_SDR_GALILEO_E5B_PCPS_ACQUISITION_FPGA_H