/[PAMELA software]/DarthVader/TrackerLevel2/src/TrkLevel1.cpp
ViewVC logotype

Diff of /DarthVader/TrackerLevel2/src/TrkLevel1.cpp

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

revision 1.6 by pam-fi, Thu Oct 26 16:22:37 2006 UTC revision 1.9 by pam-fi, Fri Nov 24 16:44:15 2006 UTC
# Line 325  Float_t TrkCluster::GetCOG(Float_t angle Line 325  Float_t TrkCluster::GetCOG(Float_t angle
325      if( view%2 ){   //Y      if( view%2 ){   //Y
326          neta=2;          neta=2;
327      }else{          //X      }else{          //X
328          if( abs(angle) <= 10. ){          if( fabs(angle) <= 10. ){
329              neta = 2;              neta = 2;
330          }else if( abs(angle) > 10. && abs(angle) <= 15. ){          }else if( fabs(angle) > 10. && fabs(angle) <= 15. ){
331              neta = 3;              neta = 3;
332          }else{          }else{
333              neta = 4;              neta = 4;
# Line 390  void TrkLevel1::Dump(){ Line 390  void TrkLevel1::Dump(){
390      cout<<"DSP status: ";      cout<<"DSP status: ";
391      for(Int_t i=0; i<12 ; i++)cout<<good[i]<<" ";      for(Int_t i=0; i<12 ; i++)cout<<good[i]<<" ";
392      cout<<endl;      cout<<endl;
393        cout<<"VA1 mask : "<<endl;
394        for(Int_t i=0; i<12 ; i++){
395            for(Int_t ii=0; ii<24 ; ii++){
396                Int_t mask = cnn[ii][i];
397                if(mask>0)mask=1;
398                cout<<mask<<" ";
399            }
400            cout <<endl;
401        }
402            
403      TClonesArray &t  = *Cluster;      TClonesArray &t  = *Cluster;
404      for(int i=0; i<this->nclstr(); i++)     ((TrkCluster *)t[i])->Dump();      for(int i=0; i<this->nclstr(); i++)     ((TrkCluster *)t[i])->Dump();
# Line 550  TrkCluster *TrkLevel1::GetCluster(int is Line 559  TrkCluster *TrkLevel1::GetCluster(int is
559  int TrkLevel1::LoadPfaParam(TString path){  int TrkLevel1::LoadPfaParam(TString path){
560                    
561          if( strcmp(path_.path,path.Data()) ){          if( strcmp(path_.path,path.Data()) ){
562                  cout <<"Loading p.f.a. parameters\n";              cout <<"Loading p.f.a. parameters\n";
563                  strcpy(path_.path,path.Data());              strcpy(path_.path,path.Data());
564                  path_.pathlen = path.Length();              path_.pathlen = path.Length();
565                  path_.error   = 0;              path_.error   = 0;
566                  return readetaparam_();              return readetaparam_();
567          }                }      
568          return 0;          return 0;
569  }  }

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.9

  ViewVC Help
Powered by ViewVC 1.1.23