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

Diff of /DarthVader/NDLevel2/src/NDLevel2.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by mocchiut, Fri Jun 30 09:21:56 2006 UTC revision 1.3 by pam-fi, Fri Jul 21 10:58:10 2006 UTC
# Line 11  void NDLevel2::Clear(){ Line 11  void NDLevel2::Clear(){
11    bottomBack = 0.;    bottomBack = 0.;
12    trigPhysics = 0.;    trigPhysics = 0.;
13  }  }
14    /**
15     * Fills a struct cNDLevel2 with values from a NDLevel2 object (to put data into a F77 common).
16     */
17    void NDLevel2::GetLevel2Struct(cNDLevel2 *l2) const{
18      l2->upperback   = upperBack;
19      l2->bottomback  = bottomBack;
20      l2->trigphysics = trigPhysics;
21    }
22    
23    
24    void NDLevel2::SetFromLevel2Struct(cNDLevel2 *l2){
25      upperBack   = l2->upperback;
26      bottomBack  = l2->bottomback;
27      trigPhysics = l2->trigphysics;
28    }
29    
30  ClassImp(NDLevel2)  ClassImp(NDLevel2)

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

  ViewVC Help
Powered by ViewVC 1.1.23