/[PAMELA software]/quicklook/dataToXML/Data/compilationInfo/src/MCMDManager/TTManager/MT_TTManager_p.c
ViewVC logotype

Annotation of /quicklook/dataToXML/Data/compilationInfo/src/MCMDManager/TTManager/MT_TTManager_p.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1.1.1 - (hide annotations) (download) (vendor branch)
Tue Apr 25 09:00:21 2006 UTC (19 years, 2 months ago) by kusanagi
Branch: MAIN
CVS Tags: dataToXML1_02/01, dataToXML1_02/00, dataToXML1_03/00, dataToXML1_03/01, dataToXML1_00/00, firstRelease, dataToXML1_01/00, dataToXML1_03_02, HEAD
Changes since 1.1: +0 -0 lines
File MIME type: text/plain
These program extract in an XML format the info contained into the ROOT files generated by YODA from the PAMELA data. To visualize the XML files in a more human readable format a collection of XSL files are given in the Data subfolder.

1 kusanagi 1.1 /****************************************************************************
2     /* F i l e D a t a
3     /*
4     /* Module : MCMDManager
5     /* C.I. No. :
6     /* $Revision: 1.1.1.1 $
7     /* $Date: 2003/08/04 09:40:21 $
8     /* Belonging to :
9     /* :
10     /* $RCSfile: MT_TTManager_p.c,v $
11     /* Program Type :
12     /* Sub-modules :
13     /*
14     /****************************************************************************
15     /* S W D e v e l o p m e n t E n v i r o n m e n t
16     /*
17     /* Host system :
18     /* SW Compiler :
19     /* $Author: sebastiani $
20     /* :
21     /****************************************************************************
22     /* U p d a t i n g
23     /*
24     /* $Log: MT_TTManager_p.c,v $
25     /* Revision 1.1.1.1 2003/08/04 09:40:21 sebastiani
26     /* Imported sources laben rel. 19.06.2003 integrated with pam2
27     /*
28     /* Revision 1.3 2002/05/09 08:16:34 zulia
29     /* * acceptance release
30     /*
31     /*
32     /*****************************************************************************/
33    
34    
35     /*============================= Include File ================================*/
36    
37     #include <src/MCMDManager/TTManager/MT_TTManager_p.h>
38     #include <src/MCMDManager/TTManager/MT_TTManager_op.h>
39    
40    
41     /*****************************************************************************/
42    
43     /*======== T T M a n a g e r P R O V I D E D I N T E R F A C E ========*/
44    
45     /*****************************************************************************/
46    
47    
48     /*****************************************************************************/
49     /* @Function: MT_piInitTTManager */
50     /* @Purpose : */
51     /* Provided Interface to initialize the TTManager object. */
52     /* */
53     /* @@ */
54     /* @Parameter Name @Mode @Description */
55     /* IN */
56     /* status_code OUT Return code */
57     /* @@ */
58     /*****************************************************************************/
59    
60     status_code MT_piInitTTManager (void)
61     {
62     status_code status;
63    
64     status =MT_opInitTTManager();
65     return (status);
66    
67     }
68    
69    
70    
71     /*****************************************************************************/
72     /* @Function: MT_piSndMsgTTManager */
73     /* @Purpose : */
74     /* Provided Interface to invoke a specific operation of the TTManager task. */
75     /* This is done by sending a message into TTManager mailbox. */
76     /* The sent message has the following structure : */
77     /* Structure -MsgTsk- : */
78     /* Field -Code- Code of the task operation */
79     /* Field -Info- Buffer that contains the task operation parameters */
80     /* Filed -LlInfo- Parameters size. */
81     /* The operations code and the parameters type of the TTManager task are */
82     /* the following : */
83     /* */
84     /* Code operation Parameters (Type assigned to -Info- field) */
85     /* MT_CHECK_TIMETAG TI_TIME structure (On Board Time (OBT)) */
86     /* MT_STORE_TIMETAG_MCMD MA_HEADER_MCMD structure (MCMD header) */
87     /* MT_DEL_MCMD_QUEUE MA_HEADER_MCMD structure (MCMD header) */
88     /* MT_TWIN_PARM_SET MA_HEADER_MCMD structure (MCMD header) */
89     /* */
90     /* @@ */
91     /* @Parameter Name @Mode @Description */
92     /* SndMsg IN Pointer to task message */
93     /* status_code OUT Return code */
94     /* @@ */
95     /*****************************************************************************/
96    
97     status_code MT_piSndMsgTTManager (MsgTsk* SndMsg)
98     {
99     status_code status;
100    
101     status =MT_opSndMsgTTManager(SndMsg);
102     return (status);
103     }
104    
105    
106    

  ViewVC Help
Powered by ViewVC 1.1.23