/[PAMELA software]/yoda/techmodel/forroutines/anticounter/ACphysics.h
ViewVC logotype

Annotation of /yoda/techmodel/forroutines/anticounter/ACphysics.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2.2 - (hide annotations) (download)
Tue Feb 8 08:24:26 2005 UTC (19 years, 10 months ago) by kusanagi
Branch: MAIN
CVS Tags: HEAD
Changes since 2.1: +0 -0 lines
File MIME type: text/plain
FILE REMOVED
No more used (defined into the AC)

1 kusanagi 1.2
2 kusanagi 1.1 struct datastruct{
3     unsigned short header[2];
4     unsigned short status;
5     unsigned short hitmap;
6     unsigned short regist[6];
7     unsigned short shift[16];
8     unsigned short counters[16];
9     unsigned short coinc[8];
10     unsigned short trigg;
11     unsigned short clock[2];
12     unsigned short temp[2];
13     unsigned short DAC[16];
14     unsigned short CRC;
15     };
16    
17 kusanagi 2.1 //physics structure
18     datastruct physicsdata;
19    
20     //pointer to struct
21     datastruct *physicspointer;
22    
23     //read variables
24     int i,err,found;
25     unsigned short buffer[1000];
26     unsigned short tmp1,tmp2;
27    
28     int flip(int i16)
29     {
30     int temp;
31    
32     temp = 0;
33     temp |= 0xFF00 & ((0x00FF & i16) << 8);
34     temp |= 0x00FF & ((0xFF00 & i16) >> 8);
35     return temp;
36     }
37 kusanagi 1.1
38    

  ViewVC Help
Powered by ViewVC 1.1.23