Skip to content
Snippets Groups Projects
Commit aeebda4c authored by Rolf Bork's avatar Rolf Bork
Browse files

Changed comments to doxygen form.

git-svn-id: https://redoubt.ligo-wa.caltech.edu/svn/advLigoRTS/trunk@3163 6dcd42c9-f523-4c6d-aada-af552506706e
parent ea226d9a
No related branches found
No related tags found
No related merge requests found
/// @file param.c
/// @brief File contains routines for reading in DAQ config info by EPICS (skeleton.st).
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
......@@ -54,14 +57,12 @@ static char *strcat_lower(char *dest, char *src) { /* MA */
int default_dcu_rate;
/*
* Parse DAQ system config file `fname' and call `callback' function
* for each data channel configured. Config files's CRC will be saved in
* `*crc'. Parameter `testpoint' is here for frame builder use.
* `arch_file' is a base name of archive file, ie. it is a full path
* Archive file name will be a base name with added date and time at the end.
* `user' is a user defined pointer passed to callback.
*/
///Parse DAQ system config file `fname' and call `callback' function
/// for each data channel configured. Config files's CRC will be saved in
/// `*crc'. Parameter `testpoint' is here for frame builder use.
/// `arch_file' is a base name of archive file, ie. it is a full path
/// Archive file name will be a base name with added date and time at the end.
/// `user' is a user defined pointer passed to callback.
int
parseConfigFile(char *fname, unsigned long *crc,
int (*callback)(char *channel_name, struct CHAN_PARAM *params, void *user),
......@@ -456,11 +457,9 @@ infoCallback(char *channel_name, struct CHAN_PARAM *params, void *user) {
}
/*
* Load DAQ configuration file and store data in `info'.
* Input and archive file names are determined based on provided site, ifo
* and system names.
*/
/// Load DAQ configuration file and store data in `info'.
/// Input and archive file names are determined based on provided site, ifo
/// and system names.
int
loadDaqConfigFile(DAQ_INFO_BLOCK *info, char *site, char *ifo, char *sys)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment