/[PAMELA software]/DarthVader/OrbitalInfo/src/OrbitalInfo.cpp
ViewVC logotype

Annotation of /DarthVader/OrbitalInfo/src/OrbitalInfo.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.4 - (hide annotations) (download)
Fri Jul 21 10:59:13 2006 UTC (18 years, 4 months ago) by pam-fi
Branch: MAIN
CVS Tags: v1r01
Changes since 1.3: +15 -0 lines
modified for C3PO

1 mocchiut 1.1 #include <OrbitalInfo.h>
2    
3 mocchiut 1.2 OrbitalInfo::OrbitalInfo(){
4     absTime = 0ULL;
5     OBT = 0ULL;
6     pkt_num = 0ULL;
7     }
8 mocchiut 1.1
9    
10 mocchiut 1.3 void OrbitalInfo::Clear(){
11     absTime = 0ULL;
12     OBT = 0ULL;
13     pkt_num = 0ULL;
14     }
15    
16 pam-fi 1.4 /**
17     * Fills a struct cOrbitalInfo with values from a OrbitalInfo object (to put data into a F77 common).
18     */
19     void OrbitalInfo::GetLevel2Struct(cOrbitalInfo *l2) const{
20     l2->abstime = absTime;
21     l2->obt = OBT;
22     l2->pkt_num = pkt_num;
23     }
24    
25     void OrbitalInfo::SetFromLevel2Struct(cOrbitalInfo *l2){
26     absTime = l2->abstime;
27     OBT = l2->obt;
28     pkt_num = l2->pkt_num;
29     }
30    
31 mocchiut 1.1 ClassImp(OrbitalInfo)
32    

  ViewVC Help
Powered by ViewVC 1.1.23