From aeebda4cf29fa61f96f5b214177bde38dfca30a4 Mon Sep 17 00:00:00 2001 From: Rolf Bork <rolf.bork@ligo.org> Date: Fri, 4 Jan 2013 18:02:47 +0000 Subject: [PATCH] Changed comments to doxygen form. git-svn-id: https://redoubt.ligo-wa.caltech.edu/svn/advLigoRTS/trunk@3163 6dcd42c9-f523-4c6d-aada-af552506706e --- src/drv/param.c | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/src/drv/param.c b/src/drv/param.c index ff4c0d214..8f25872bf 100644 --- a/src/drv/param.c +++ b/src/drv/param.c @@ -1,3 +1,6 @@ +/// @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) { -- GitLab