/[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.3 by pam-fi, Wed Oct 11 06:53:01 2006 UTC revision 1.25 by pam-fi, Sat Mar 22 08:32:50 2008 UTC
# Line 11  using namespace std; Line 11  using namespace std;
11  extern "C" {  extern "C" {
12                    
13  //      int readetaparam_();  //      int readetaparam_();
14          float cog_(int*,int*);      float cog_(int*,int*);
15          float pfaeta_(int*,float*);      float pfaeta_(int*,float*);
16          float pfaeta2_(int*,float*);      float pfaeta2_(int*,float*);
17          float pfaeta3_(int*,float*);      float pfaeta3_(int*,float*);
18          float pfaeta4_(int*,float*);      float pfaeta4_(int*,float*);
19        float pfaetal_(int*,float*);
20        int   npfastrips_(int*,float*);
21                    
22  }  }
23  //--------------------------------------  //--------------------------------------
# Line 24  extern "C" { Line 26  extern "C" {
26  //--------------------------------------  //--------------------------------------
27  TrkCluster::TrkCluster(){  TrkCluster::TrkCluster(){
28                    
29          view     = 0;  //    cout << "TrkCluster::TrkCluster()"<<endl;
30          maxs     = 0;      view     = -1;
31          indmax   = 0;      maxs     = -1;
32                indmax   = -1;
33          CLlength = 0;          
34          clsignal = 0;      CLlength = 0;
35          clsigma  = 0;      clsignal = 0;
36          cladc    = 0;      clsigma  = 0;
37          clbad    = 0;      cladc    = 0;
38        clbad    = 0;
39    
40  };  };
41  //--------------------------------------  //--------------------------------------
42  //  //
43  //  //
44  //--------------------------------------  //--------------------------------------
 TrkCluster::~TrkCluster(){  
           
         delete [] clsignal;  
         delete [] clsigma;  
         delete [] cladc;  
         delete [] clbad;  
 };  
 //--------------------------------------  
 //  
 //  
 //--------------------------------------  
45  TrkCluster::TrkCluster(const TrkCluster& t){  TrkCluster::TrkCluster(const TrkCluster& t){
46                    
47          view     = t.view;      view     = t.view;
48          maxs     = t.maxs;      maxs     = t.maxs;
49          indmax   = t.indmax;      indmax   = t.indmax;
50                    
51          CLlength = t.CLlength;        CLlength = t.CLlength;      
52        if(CLlength){
53          clsignal = new Float_t[CLlength];          clsignal = new Float_t[CLlength];
54          clsigma  = new Float_t[CLlength];          clsigma  = new Float_t[CLlength];
55          cladc    = new Int_t[CLlength];          cladc    = new Int_t[CLlength];
56          clbad    = new Bool_t[CLlength];          clbad    = new Bool_t[CLlength];
57          for(Int_t i=0; i<CLlength;i++){          for(Int_t i=0; i<CLlength;i++){
58                  clsignal[i] = t.clsignal[i];              clsignal[i] = t.clsignal[i];
59                  clsigma[i]  = t.clsigma[i];              clsigma[i]  = t.clsigma[i];
60                  cladc[i]    = t.cladc[i];              cladc[i]    = t.cladc[i];
61                  clbad[i]    = t.clbad[i];              clbad[i]    = t.clbad[i];
62          };          };
63        };
64    };
65    //--------------------------------------
66    //
67    //
68    //--------------------------------------
69    void TrkCluster::Clear(){
70        
71    //    cout << "void TrkCluster::Clear()"<<endl;
72        if(CLlength){
73            delete [] clsignal;
74            delete [] clsigma;
75            delete [] cladc;
76            delete [] clbad;
77        }
78    
79        view     = 0;
80        maxs     = 0;
81        indmax   = 0;
82            
83        CLlength = 0;
84        clsignal = 0;
85        clsigma  = 0;
86        cladc    = 0;
87        clbad    = 0;
88    
89  };  };
90  //--------------------------------------  //--------------------------------------
# Line 74  TrkCluster::TrkCluster(const TrkCluster& Line 92  TrkCluster::TrkCluster(const TrkCluster&
92  //  //
93  //--------------------------------------  //--------------------------------------
94  /**  /**
95   * Evaluate the cluster signal including all adjacent strip with a significant signal ( s > cut*sigma ).   * Evaluate the cluster signal including a maximum number of adjacent
96   * @param cut Inclusion cut.   * strips, around maxs, having a significant signal.
97     * @param nstrip   Maximum number of strips.
98     * @param cut      Inclusion cut ( s > cut*sigma ).
99     * @param force    Falg to force the PFA strip-inclusion pattern (nstrip>0)
100     * If nstrip<=0 only the inclusion cut is used to determine the cluster size.
101   */   */
102  Float_t TrkCluster::GetSignal(Float_t cut){  Float_t TrkCluster::GetSignal(Int_t nstrip, Float_t cut, Bool_t force){
103          Float_t s = 0;      
104          for(Int_t is = 0; is < CLlength; is++){      if(CLlength<=0)return 0;
105                  Float_t scut = cut*clsigma[is];  
106                  if(clsignal[is] > scut) s += clsignal[is];      Float_t s = 0;
107        
108        //-----------------------------------
109        // inlcude strips with s > cut*sigma
110        //-----------------------------------
111    
112        if( nstrip<=0 ){
113    //          for(Int_t is = 0; is < CLlength; is++){
114    //              Float_t scut = cut*clsigma[is];
115    //              if(clsignal[is] > scut) s += clsignal[is];
116    //          };
117            for(Int_t is = indmax+1; is < CLlength; is++){
118                Float_t scut = cut*clsigma[is];
119                if(clsignal[is] > scut) s += clsignal[is];
120                else break;
121            };
122            for(Int_t is = indmax; is >=0; is--){
123                Float_t scut = cut*clsigma[is];
124                if(clsignal[is] > scut) s += clsignal[is];
125                else break;
126          };          };
127          return s;          return s;
128  };      };
129  /**      
130   * Evaluate the cluster signal including a ( maximum ) fixed number of adjacent strips (with s>0) around the maxs.      //---------------------------------------------------
131   * @param nstrip Number of strips.      // inlcude strips with s > cut*sigma, up to nstrip.
132   */      // strips are included in order of decreasing signal
133  Float_t TrkCluster::GetSignal(Int_t nstrip){      //---------------------------------------------------
134                if( !force ){
135          Float_t s = 0;  
136          Int_t il = indmax;          Int_t il = indmax;
137          Int_t ir = indmax;          Int_t ir = indmax;
138          Int_t inc = 0;          Int_t inc = 0;
139                    
140          while ( inc<nstrip ){          if( clsignal[indmax] < cut*clsigma[indmax] ) return 0;
141                  Float_t sl = 0;          
142                  Float_t sr = 0;          while ( inc < nstrip ){
143                  if( il >= 0       ) sl = clsignal[il];              Float_t sl = -100000;
144                  if( ir < CLlength ) sr = clsignal[ir];              Float_t sr = -100000;
145                  if( sl == sr && inc == 0 ){              if( il >= 0       ) sl = clsignal[il];
146                          s += clsignal[il];              if( ir < CLlength ) sr = clsignal[ir];
147                          il--;              if( sl == sr && inc == 0 ){
148                          ir++;                  s += clsignal[il]; //cout << inc<<" - "<< clsignal[il]<<" "<<s<<endl;
149                  }else if ( sl >= sr && sl>0 && inc !=0){                  il--;
150                          s += sl;                  ir++;
151                          il--;              }else if ( sl >= sr && sl > cut*clsigma[il] && inc !=0 ){
152                  }else if ( sl < sr && sr>0 ){                  s += sl;//cout << inc<<" - "<< clsignal[il]<<" "<<s<<endl;
153                          s += sr;                  il--;
154                          ir++;              }else if ( sl < sr && sr > cut*clsigma[ir] ){
155                  }else break;                  s += sr;//cout << inc<<" - " << clsignal[ir]<<" "<<s<<endl;
156                                    ir++;
157                  inc++;              }else break;
158                
159                inc++;
160          }          }
161          return s;          return s;
162    
163        }else{
164        //---------------------------------------------------
165        // evaluate signal using a fixed number of strips,
166        // following the PFA inclusion patters
167        //---------------------------------------------------
168    //     --> signal of the central strip
169            Float_t sc = clsignal[indmax];
170    //     signal of adjacent strips
171            Float_t sl1 = -9999.;
172            Float_t sl2 = -9999.;
173            Float_t sr1 = -9999.;
174            Float_t sr2 = -9999.;
175            if(indmax-1>=0) sl1 = clsignal[indmax-1];
176            if(indmax-2>=0) sl2 = clsignal[indmax-2];
177            if(indmax+1<CLlength) sr1 = clsignal[indmax+1];
178            if(indmax+2<CLlength) sr2 = clsignal[indmax+2];
179    
180            if(nstrip==1){
181                s = sc;
182            }else if(nstrip==2){
183                if( sl1>sr1 && sl1+sc!=0 )s = (sl1+sc);
184                if( sl1<sr1 && sr1+sc!=0 )s = (sc+sr1);
185                if( sl1==sr1 && sl1 != -9999.){
186                    if( clsigma[indmax-1] < clsigma[indmax+1] &&  sl1+sc!=0 )s = (sl1+sc);
187                    if( clsigma[indmax-1] > clsigma[indmax+1] &&  sc+sr1!=0 )s = (sc+sr1);
188                }
189            }else if(nstrip==3){
190                s = (sl1+sc+sr1);
191            }else if(nstrip==4){
192                if( sl2>sr2 && sl2+sl1+sc+sr1!=0 )s = (sl2+sl1+sc+sr1);
193                if( sl2<sr2 && sl1+sc+sr1+sr2!=0 )s = (sl1+sc+sr1+sr2);
194                if( sl2==sr2 && sl2 != -9999.){
195                    if( clsigma[indmax-2] < clsigma[indmax+2] &&  sl2+sl1+sc+sr1!=0 )s = (sl2+sl1+sc+sr1);
196                    if( clsigma[indmax-2] > clsigma[indmax+2] &&  sl1+sc+sr1+sr2!=0 )s = (sl1+sc+sr1+sr2);
197                }
198            }else if(nstrip==5){
199                s = (sl1+sc+sr1);
200                if(sl2 != -9999.)s += sl2;
201                if(sr2 != -9999.)s += sr2;
202            }else{
203                cout << "Float_t TrkCluster::GetSignal("<<nstrip<<","<<cut<<","<<force<<")- not implemented"<<endl;  
204            }
205        
206        }
207    
208        return 0.;
209    
210  };  };
211    
212    
213  /**  /**
214   * Evaluate the cluster signal-to-noise, as defined by Turchetta, including all adjacent strip with a significant signal ( s > cut*sigma ).   * Evaluate the cluster signal-to-noise, as defined by Turchetta, including a
215   * @param cut Inclusion cut.   * maximum number of adjacent strips, around maxs, having a significant signal.
216   */   * @param nstrip   Maximum number of strips.
217  Float_t TrkCluster::GetSignalToNoise(Float_t cut){   * @param cut      Inclusion cut ( s > cut*sigma ).
218          Float_t sn = 0;   * If nstrip<=0 only the inclusion cut is used to determine the cluster size.
         for(Int_t is = 0; is < CLlength; is++){  
                 Float_t scut = cut*clsigma[is];  
                 if(clsignal[is] > scut) sn += clsignal[is]/clsigma[is];  
         };  
         return sn;  
 };  
 /**  
  * Evaluate the cluster signal-to-noise, as defined by Turchetta, including a ( maximum ) fixed number of adjacent strips (with s>0) around the maxs.  
  * @param nstrip Number of strips.  
219   */   */
220  Float_t TrkCluster::GetSignalToNoise(Int_t nstrip){  Float_t TrkCluster::GetSignalToNoise(Int_t nstrip, Float_t cut){
           
         Float_t sn = 0;  
         Int_t il = indmax;  
         Int_t ir = indmax;  
         Int_t inc = 0;  
221                    
222          while ( inc<nstrip ){      if(CLlength<=0)return 0;
223                  Float_t sl = 0;  
224                  Float_t sr = 0;      Float_t sn = 0;
225                  if( il >= 0       ) sl = clsignal[il];      
226                  if( ir < CLlength ) sr = clsignal[ir];      if( nstrip<=0 ){
227                  if( sl == sr && inc == 0 ){          for(Int_t is = indmax+1; is < CLlength; is++){
228                          sn += clsignal[il]/clsigma[is];              Float_t scut = cut*clsigma[is];
229                          il--;              if(clsignal[is] > scut) sn += clsignal[is]/clsigma[is];
230                          ir++;              else break;
231                  }else if ( sl >= sr && sl>0 && inc !=0){          };
232                          sn += sl/clsigma[il];          for(Int_t is = indmax; is >=0; is--){
233                          il--;              Float_t scut = cut*clsigma[is];
234                  }else if ( sl < sr && sr>0 ){              if(clsignal[is] > scut) sn += clsignal[is]/clsigma[is];
235                          sn += sr/clsigma[ir];              else break;
236                          ir++;          };
                 }else break;  
                   
                 inc++;  
         }  
237          return sn;          return sn;
238        };
239        
240        
241        Int_t il = indmax;
242        Int_t ir = indmax;
243        Int_t inc = 0;
244    
245        if( clsignal[indmax] < cut*clsigma[indmax] ) return 0;
246    
247        while ( inc < nstrip ){
248            Float_t sl = -100000;
249            Float_t sr = -100000;
250            if( il >= 0       ) sl = clsignal[il];
251            if( ir < CLlength ) sr = clsignal[ir];
252            if( sl == sr && inc == 0 ){
253                sn += clsignal[il]/clsigma[il];
254                il--;
255                ir++;
256            }else if ( sl >= sr && sl > cut*clsigma[il] && inc !=0 ){
257                sn += sl/clsigma[il];
258                il--;
259            }else if ( sl < sr && sr > cut*clsigma[ir] ){
260                sn += sr/clsigma[ir];
261                ir++;
262            }else break;
263            
264            inc++;
265        }
266        return sn;
267  };  };
268  /**  /**
269   * Evaluate the cluster multiplicity.   * Evaluate the cluster multiplicity.
270   * @param cut Inclusion cut.   * @param cut Inclusion cut.
271   */   */
272  Int_t TrkCluster::GetMultiplicity(Float_t cut){  Int_t TrkCluster::GetMultiplicity(Float_t cut){
273          Int_t m = 0;  
274          for(Int_t is = 0; is < CLlength; is++){      if(CLlength<=0)return 0;
275                  Float_t scut = cut*clsigma[is];  
276                  if(clsignal[is] > scut) m++;      Int_t m = 0;
277          };  
278          return m;      for(Int_t is = indmax+1; is < CLlength; is++){
279            Float_t scut = cut*clsigma[is];
280            if(clsignal[is] > scut) m++;
281            else break;
282        };
283        for(Int_t is = indmax; is >=0; is--){
284            Float_t scut = cut*clsigma[is];
285            if(clsignal[is] > scut) m++;
286            else break;
287        };
288        return m;
289  };  };
290  /**  /**
291   * True if the cluster contains bad strips.   * True if the cluster contains bad strips.
292   * @param nbad Number of strips around the maximum.   * @param nbad Number of strips around the maximum.
293   */   */
294  Bool_t TrkCluster::IsBad(Int_t nbad){  Bool_t TrkCluster::IsBad(Int_t nbad){
295                            
296  /*      Float_t max = 0;              if(CLlength<=0)return 0;
297          Int_t  imax = 0;          
298          for(Int_t is = 0; is < CLlength; is++){      Int_t il,ir;
299                  if(clsignal[is] > max){      il = indmax;
300                          max = clsignal[is];      ir = indmax;
301                          imax = is;      for(Int_t i=1; i<nbad; i++){
302                  };          if (ir == CLlength-1 && il == 0)break;
303          };          else if (ir == CLlength-1 && il != 0)il--;
304                    else if (ir != CLlength-1 && il == 0)ir++;
305          Int_t il,ir;          else{
306          il = imax;              if(clsignal[il-1] > clsignal[ir+1])il--;
307          ir = imax;*/              else ir++;
           
         Int_t il,ir;  
         il = indmax;  
         ir = indmax;  
         for(Int_t i=1; i<nbad; i++){  
                      if (ir == CLlength && il == 0)break;  
                 else if (ir == CLlength && il != 0)il--;  
                 else if (ir != CLlength && il == 0)ir++;  
                 else{  
                         if(clsignal[il-1] > clsignal[ir+1])il--;  
                         else ir++;  
                 }  
308          }          }
309          Int_t isbad = 0;      }
310          for(Int_t i=il; i<=ir; i++)isbad += clbad[i];      Int_t isbad = 0;
311                for(Int_t i=il; i<=ir; i++)isbad += clbad[i];
312          return ( isbad != nbad );      
313        return ( isbad != nbad );
314  };  };
315    /**
316     * True if the cluster contains saturated strips.
317     * @param nbad Number of strips around the maximum.
318     */
319    Bool_t TrkCluster::IsSaturated(Int_t nbad){
320    
321        if(CLlength<=0)return 0;
322    
323        Int_t il,ir;
324        il = indmax;
325        ir = indmax;
326        for(Int_t i=1; i<nbad; i++){
327            if (ir == CLlength-1 && il == 0)break;
328            else if (ir == CLlength-1 && il != 0)il--;
329            else if (ir != CLlength-1 && il == 0)ir++;
330            else{
331                if(clsignal[il-1] > clsignal[ir+1])il--;
332                else ir++;
333            }
334        }
335        Int_t isbad = 0;
336        for(Int_t i=il; i<=ir; i++){
337            if( IsX() && cladc[i] > 2980 )isbad++;
338            if( IsY() && cladc[i] <   80 )isbad++;
339        }
340        return ( isbad != 0 );
341        
342    }
343  //--------------------------------------  //--------------------------------------
344  //  //
345  //  //
346  //--------------------------------------  //--------------------------------------
347  void TrkCluster::Dump(){  void TrkCluster::Dump(){
348    
349          cout << "----- Cluster" << endl;      cout << "----- Cluster" << endl;
350          cout << "View "<<view << " - Ladder "<<GetLadder()<<endl;      cout << "View "<<view << " - Ladder "<<GetLadder()<<endl;
351          cout << "Position of maximun "<< maxs <<endl;      cout << "Position of maximun "<< maxs <<endl;
352          cout << "Multiplicity        "<< GetMultiplicity() <<endl;      cout << "Multiplicity        "<< GetMultiplicity() <<endl;
353          cout << "Tot signal          "<< GetSignal() << " (ADC channels)"<<endl ;      cout << "Tot signal          "<< GetSignal() << " (ADC channels)"<<endl ;
354          cout << "Signal/Noise        "<< GetSignalToNoise();      cout << "Signal/Noise        "<< GetSignalToNoise()<<endl;
355          cout <<endl<< "Strip signals       ";      cout << "COG                 "<< GetCOG(0)<<endl;;
356          for(Int_t i =0; i<CLlength; i++)cout << " " <<clsignal[i];      cout << "Strip signals       ";
357          cout <<endl<< "Strip sigmas        ";      for(Int_t i =0; i<CLlength; i++)cout << " " <<clsignal[i];
358          for(Int_t i =0; i<CLlength; i++)cout << " " <<clsigma[i];      cout <<endl<< "Strip sigmas        ";
359          cout <<endl<< "Strip ADC           ";      for(Int_t i =0; i<CLlength; i++)cout << " " <<clsigma[i];
360          for(Int_t i =0; i<CLlength; i++)cout << " " <<cladc[i];      cout <<endl<< "Strip ADC           ";
361          cout <<endl<< "Strip BAD           ";      for(Int_t i =0; i<CLlength; i++)cout << " " <<cladc[i];
362          for(Int_t i =0; i<CLlength; i++){      cout <<endl<< "Strip BAD           ";
363                  if(i==indmax)cout << "  *" <<clbad[i]<<"*";      for(Int_t i =0; i<CLlength; i++){
364                  else cout << " " <<clbad[i];          if(i==indmax)cout << "  *" <<clbad[i]<<"*";
365          }          else cout << " " <<clbad[i];
366          cout << endl;      }
367        cout << endl;
368                    
369  }  }
370  //--------------------------------------  //--------------------------------------
# Line 242  void TrkCluster::Dump(){ Line 374  void TrkCluster::Dump(){
374  /**  /**
375   * Method to fill a level1 struct with only one cluster (done to use F77 p.f.a. routines on a cluster basis).   * Method to fill a level1 struct with only one cluster (done to use F77 p.f.a. routines on a cluster basis).
376   */   */
377  cTrkLevel1* TrkCluster::GetLevel1Struct(){  void TrkCluster::GetLevel1Struct(cTrkLevel1* l1){
378                                    
379          cTrkLevel1* l1 = new cTrkLevel1;  //    cTrkLevel1* l1 = new cTrkLevel1;
380            
381          l1->nclstr1 = 1;  //    cTrkLevel1* l1 = &level1event_ ;
         l1->view[0] = view;  
         l1->ladder[0] = GetLadder();  
         l1->maxs[0] = maxs;  
         l1->mult[0] = GetMultiplicity();  
         l1->dedx[0] = GetSignal();  
         l1->indstart[0] = 1;  
         l1->indmax[0]   = indmax+1;  
         l1->totCLlength = CLlength;  
         for(Int_t i=0; i<CLlength; i++){  
                 l1->clsignal[i] = clsignal[i];  
                 l1->clsigma[i] = clsigma[i];  
                 l1->cladc[i] = cladc[i];  
                 l1->clbad[i] = clbad[i];  
         };  
382                    
383          return l1;      l1->nclstr1 = 1;
384        l1->view[0] = view;
385        l1->ladder[0] = GetLadder();
386        l1->maxs[0] = maxs;
387        l1->mult[0] = GetMultiplicity();
388        l1->dedx[0] = GetSignal();
389        l1->indstart[0] = 1;
390        l1->indmax[0]   = indmax+1;
391        l1->totCLlength = CLlength;
392        for(Int_t i=0; i<CLlength; i++){
393            l1->clsignal[i] = clsignal[i];
394            l1->clsigma[i] = clsigma[i];
395            l1->cladc[i] = cladc[i];
396            l1->clbad[i] = clbad[i];
397        };
398        
399    //    return l1;
400  };  };
401  //--------------------------------------  //--------------------------------------
402  //  //
# Line 276  cTrkLevel1* TrkCluster::GetLevel1Struct( Line 410  cTrkLevel1* TrkCluster::GetLevel1Struct(
410   */   */
411  Float_t TrkCluster::GetCOG(Int_t ncog){  Float_t TrkCluster::GetCOG(Int_t ncog){
412                    
413          int ic = 1;      int ic = 1;
414          level1event_ = *GetLevel1Struct();      GetLevel1Struct();
415          return cog_(&ncog,&ic);      return cog_(&ncog,&ic);
416            
417    };
418    /**
419     * Evaluates the Center-Of-Gravity (COG) of the cluster, in strips, relative to the strip with the maximum signal (TrkCluster::maxs),
420     * choosing the number of strips according to the angle, as implemented for the eta-algorythm .
421     *      @param angle Projected angle in degree.        
422     */
423    Float_t TrkCluster::GetCOG(Float_t angle){
424                
425        Int_t neta  = 0;
426    
427    //     Float_t eta = GetETA(0,angle);
428    //     for(neta=2; neta<10; neta++) if( eta == GetETA(neta,angle) ) break;
429    //    if(eta != GetETA(neta,angle) )cout << "Attenzione!! pasticcio "<<endl;
430    
431        if( view%2 ){   //Y
432            neta=2;
433        }else{          //X
434            if( fabs(angle) <= 10. ){
435                neta = 2;
436            }else if( fabs(angle) > 10. && fabs(angle) <= 15. ){
437                neta = 3;
438            }else{
439                neta = 4;
440            };
441        };
442    
443        return GetCOG(neta);
444                    
445  };  };
446  //--------------------------------------  //--------------------------------------
# Line 286  Float_t TrkCluster::GetCOG(Int_t ncog){ Line 448  Float_t TrkCluster::GetCOG(Int_t ncog){
448  //  //
449  //--------------------------------------  //--------------------------------------
450  /**  /**
451   * Evaluates the cluster position, in strips, relative to the strip with the maximum signal (TrkCluster::maxs), by applying the non-linear ETA-algorythm.   * Evaluates the cluster position, in pitch units, relative to the strip
452     *  with the maximum signal (TrkCluster::maxs), by applying the non-linear
453     *  ETA-algorythm.
454   *  @param neta  Number of strips to evaluate ETA.   *  @param neta  Number of strips to evaluate ETA.
455   *  @param angle Projected angle between particle track and detector plane.   *  @param angle Projected (effective) angle between particle track and detector plane.
456     *  @landi flag to apply Landi correction
457   * Implemented values of neta are 2,3,4. If neta=0, ETA2, ETA3 and ETA4 are applied according to the angle.   * Implemented values of neta are 2,3,4. If neta=0, ETA2, ETA3 and ETA4 are applied according to the angle.
458   */   */
459  Float_t TrkCluster::GetETA(Int_t neta, float angle){  Float_t TrkCluster::GetETA(Int_t neta, float angle, bool landi){
460                    
461    //    cout << "GetETA(neta,angle) "<< neta << " "<< angle;
462  //      LoadPfaParam();  //      LoadPfaParam();
463          int ic = 1;  
464          level1event_ = *GetLevel1Struct();      TrkParams::Load(4);
465          if(neta == 0)      return pfaeta_(&ic,&angle);      if( !TrkParams::IsLoaded(4) ){
466          else if(neta == 2) return pfaeta2_(&ic,&angle);          cout << "Float_t TrkCluster::GetETA(Int_t neta, float angle, bool landi) --- ERROR --- p.f.a. parameters  not loaded"<<endl;
         else if(neta == 3) return pfaeta3_(&ic,&angle);  
         else if(neta == 4) return pfaeta4_(&ic,&angle);  
         else cout << "ETA"<<neta<<" not implemented\n";  
467          return 0;          return 0;
468                }
469    
470        float ax = angle;
471        int ic = 1;
472        GetLevel1Struct();
473        if(     neta == 0 && !landi) return pfaeta_(&ic,&ax);
474        else if(neta == 0 && landi ) return pfaetal_(&ic,&ax);
475        else if(neta == 2          ) return pfaeta2_(&ic,&ax);
476        else if(neta == 3          ) return pfaeta3_(&ic,&ax);
477        else if(neta == 4          ) return pfaeta4_(&ic,&ax);
478        else cout << "TrkCluster::GetETA("<<neta<<","<<angle<<","<<landi<<") not implemented\n";
479        return 0;
480        
481  };  };
482    
483    /**
484     * Evaluates the cluster position, in pitch unit, relative to the strip with
485     * the maximum signal (TrkCluster::maxs), by applying the PFA set as default (see TrkParams).
486     *  @param angle Projected (effective) angle between particle track and detector plane.
487     */
488    Float_t TrkCluster::GetPositionPU(float angle){
489    
490        if     ( TrkParams::GetPFA() == 0  )return GetETA(0,angle,false);
491        else if( TrkParams::GetPFA() == 2  )return GetETA(2,angle,false);
492        else if( TrkParams::GetPFA() == 3  )return GetETA(3,angle,false);
493        else if( TrkParams::GetPFA() == 4  )return GetETA(4,angle,false);
494        else if( TrkParams::GetPFA() == 5  )return GetETA(0,angle,true);
495        else if( TrkParams::GetPFA() == 10 )return GetCOG(0);
496        else if( TrkParams::GetPFA() == 11 )return GetCOG(1);
497        else if( TrkParams::GetPFA() == 12 )return GetCOG(2);
498        else if( TrkParams::GetPFA() == 13 )return GetCOG(3);
499        else if( TrkParams::GetPFA() == 14 )return GetCOG(4);
500        else cout << "  TrkCluster::GetPositionPU(float "<<angle<<") -- WARNING -- PFA="<<TrkParams::GetPFA()<<" not implemented"<<endl;
501        
502        return 0.;
503        
504    }
505    
506    /**
507     * Give the number of strip used to evaluate the cluster coordinate
508     * according to the p.f.a.
509     * It returns 0 when the COG is used (in this case the number of strip used
510     * equals the multiplicity).
511     */
512    Int_t TrkCluster::GetPFAstrips(float angle){
513    
514        float ax = angle;
515        int ic = 1;
516        GetLevel1Struct();
517        return npfastrips_(&ic,&ax);
518    
519    }
520    
521  //--------------------------------------  //--------------------------------------
522  //  //
523  //  //
524  //--------------------------------------  //--------------------------------------
525  TrkLevel1::TrkLevel1(){  TrkLevel1::TrkLevel1(){
526                
527  //      good1 = -1;  //    cout << "TrkLevel1::TrkLevel1()"<<endl;
528            //    Cluster = new TClonesArray("TrkCluster");
529          Cluster = new TClonesArray("TrkCluster");      Cluster = 0;
530                for(Int_t i=0; i<12 ; i++){
531          for(Int_t i=0; i<12 ; i++){          good[i] = -1;
532  //              crc[i] = -1;          for(Int_t j=0; j<24 ; j++){
533                  good[i] = -1;              cn[j][i]=0;
534                  for(Int_t j=0; j<24 ; j++){              cnn[j][i]=0;
535                          cnev[j][i]=0;          };
536                          cnnev[j][i]=0;      };
537                  };  //     TrkParams::SetTrackingMode();
538  //              fshower[i]=0;  //     TrkParams::SetPrecisionFactor();
539          };  //     TrkParams::SetStepMin();
540        TrkParams::SetMiniDefault();
541        TrkParams::SetPFA();
542    }
543    //--------------------------------------
544    //
545    //
546    //--------------------------------------
547    void TrkLevel1::Set(){
548        if(!Cluster)Cluster = new TClonesArray("TrkCluster");
549  }  }
550  //--------------------------------------  //--------------------------------------
551  //  //
# Line 331  TrkLevel1::TrkLevel1(){ Line 553  TrkLevel1::TrkLevel1(){
553  //--------------------------------------  //--------------------------------------
554  void TrkLevel1::Dump(){  void TrkLevel1::Dump(){
555            
556          cout<<"DSP status: ";      cout<<"DSP status: ";
557          for(Int_t i=0; i<12 ; i++)cout<<good[i]<<" ";      for(Int_t i=0; i<12 ; i++)cout<<good[i]<<" ";
558          cout<<endl;      cout<<endl;
559                cout<<"VA1 mask : "<<endl;
560          TClonesArray &t  = *Cluster;      for(Int_t i=0; i<12 ; i++){
561          for(int i=0; i<this->nclstr(); i++)     ((TrkCluster *)t[i])->Dump();          for(Int_t ii=0; ii<24 ; ii++){
562                Int_t mask = cnn[ii][i];
563                if(mask>0)mask=1;
564                cout<<mask<<" ";
565            }
566            cout <<endl;
567        }
568        
569        if(!Cluster)return;
570        TClonesArray &t  = *Cluster;
571        for(int i=0; i<this->nclstr(); i++)     ((TrkCluster *)t[i])->Dump();
572        
573  }  }
574    /**
575     * \brief Dump processing status
576     */
577    void TrkLevel1::StatusDump(int view){
578        cout << "DSP n. "<<view+1<<" (level1-)status: "<<hex<<showbase<<good[view]<<dec<<endl;    
579    };
580    /**
581     * \brief Check event status
582     *
583     * Check the event status, according to a flag-mask given as input.
584     * Return true if the view passes the check.
585     *
586     * @param view View number (0-11)
587     * @param flagmask Mask of flags to check (eg. flagmask=0x111 no missing packet,
588     *  no crc error, no software alarm)
589     *
590     * @see TrkLevel2 class definition to know how the status flag is defined
591     *
592     */
593    Bool_t TrkLevel1::StatusCheck(int view, int flagmask){
594    
595        if( view<0 || view >= 12)return false;
596        return !(good[view]&flagmask);
597    
598    };
599    
600    
601  //--------------------------------------  //--------------------------------------
602  //  //
603  //  //
# Line 346  void TrkLevel1::Dump(){ Line 605  void TrkLevel1::Dump(){
605  /**  /**
606   * Fills a TrkLevel1 object with values from a struct cTrkLevel1 (to get data from F77 common).   * Fills a TrkLevel1 object with values from a struct cTrkLevel1 (to get data from F77 common).
607   */   */
608  void TrkLevel1::SetFromLevel1Struct(cTrkLevel1 *l1){  void TrkLevel1::SetFromLevel1Struct(cTrkLevel1 *l1, Bool_t full){
   
         //  *** CLUSTER ***  
         TrkCluster* t_cl = new TrkCluster();  
         TClonesArray &t = *Cluster;  
         for(int i=0; i<l1->nclstr1; i++){  
                   
                 t_cl->view     = l1->view[i];  
                 t_cl->maxs     = l1->maxs[i];  
                 t_cl->indmax   = l1->indmax[i] - l1->indstart[i];  
                   
                 Int_t from = l1->indstart[i] -1;  
                 Int_t to   = l1->totCLlength ;  
                 if(i != l1->nclstr1-1)to   = l1->indstart[i+1] -1 ;  
                 t_cl->CLlength = to - from ;  
                   
                 t_cl->clsignal = new Float_t[t_cl->CLlength];  
                 t_cl->clsigma  = new Float_t[t_cl->CLlength];  
                 t_cl->cladc    = new Int_t[t_cl->CLlength];  
                 t_cl->clbad    = new Bool_t[t_cl->CLlength];  
                 Int_t index = 0;  
                 for(Int_t is = from; is < to; is++ ){  
                         t_cl->clsignal[index] = (Float_t) l1->clsignal[is];  
                         t_cl->clsigma[index]  = (Float_t) l1->clsigma[is];  
                         t_cl->cladc[index]    = (Int_t)   l1->cladc[is];  
                         t_cl->clbad[index]    = (Bool_t)  l1->clbad[is];  
                         index++;  
                 };  
                                   
                 new(t[i]) TrkCluster(*t_cl);  
         };  
           
         delete t_cl;  
609    
610          //  ****general variables****  //    cout << "void TrkLevel1::SetFromLevel1Struct(cTrkLevel1 *l1, Bool_t full)"<<endl;
611        
612          for(Int_t i=0; i<12 ; i++){      Clear();
613                  good[i] = -1;      //  ---------------
614                  for(Int_t j=0; j<24 ; j++){      //  *** CLUSTER ***
615                          cnev[j][i]     = l1->cnev[j][i];      //  ---------------
616                          cnnev[j][i] = l1->cnnev[j][i];      TrkCluster* t_cl = new TrkCluster();
617                  };      if(!Cluster)Cluster = new TClonesArray("TrkCluster");
618        TClonesArray &t = *Cluster;
619        for(int i=0; i<l1->nclstr1; i++){
620    
621            t_cl->Clear();
622    //      if( full || (!full && l1->whichtrack[i]) ){
623            
624            t_cl->view     = l1->view[i];
625            t_cl->maxs     = l1->maxs[i];
626    
627            if( full || (!full && l1->whichtrack[i]) ){
628                t_cl->indmax   = l1->indmax[i] - l1->indstart[i];      
629                Int_t from = l1->indstart[i] -1;
630                Int_t to   = l1->totCLlength ;
631                if(i != l1->nclstr1-1)to   = l1->indstart[i+1] -1 ;
632                t_cl->CLlength = to - from ;
633                
634                t_cl->clsignal = new Float_t[t_cl->CLlength];
635                t_cl->clsigma  = new Float_t[t_cl->CLlength];
636                t_cl->cladc    = new Int_t[t_cl->CLlength];
637                t_cl->clbad    = new Bool_t[t_cl->CLlength];
638    
639                Int_t index = 0;
640                for(Int_t is = from; is < to; is++ ){
641                    t_cl->clsignal[index] = (Float_t) l1->clsignal[is];
642                    t_cl->clsigma[index]  = (Float_t) l1->clsigma[is];
643                    t_cl->cladc[index]    = (Int_t)   l1->cladc[is];
644                    t_cl->clbad[index]    = (Bool_t)  l1->clbad[is];
645                    index++;
646                };
647            }
648            new(t[i]) TrkCluster(*t_cl); // <<< store cluster
649        };
650        
651        delete t_cl;
652        
653        //  -------------------------
654        //  ****general variables****
655        //  -------------------------    
656        for(Int_t i=0; i<12 ; i++){
657            good[i] = l1->good[i];
658            for(Int_t j=0; j<24 ; j++){
659                cn[j][i]     = l1->cnev[j][i];
660    //          cnrms[j][i]  = l1->cnrmsev[j][i];
661                cnn[j][i]    = l1->cnnev[j][i];
662          };          };
663                };
664        
665  }  }
666  /**  /**
667   * Fills a struct cTrkLevel1 with values from a TrkLevel1 object (to put data into a F77 common).   * Fills a struct cTrkLevel1 with values from a TrkLevel1 object (to put data into a F77 common).
668   */   */
669    
670  cTrkLevel1* TrkLevel1::GetLevel1Struct() {  void TrkLevel1::GetLevel1Struct(cTrkLevel1* l1) {
671            
672          cTrkLevel1 *l1=0;  //    cTrkLevel1* l1 = &level1event_ ;
673          //      
674          for(Int_t i=0; i<12 ; i++){      for(Int_t i=0; i<12 ; i++){
675                  l1->good[i] = good[i];          l1->good[i] = good[i];
676                  for(Int_t j=0; j<24 ; j++){          for(Int_t j=0; j<24 ; j++){
677                          l1->cnev[j][i]  = cnev[j][i];              l1->cnev[j][i]    = cn[j][i]  ;
678                          l1->cnnev[j][i] = cnnev[j][i];              l1->cnnev[j][i]   = cnn[j][i] ;
679                  };              l1->cnrmsev[j][i] = 0. ;
680          };          };
681                    l1->fshower[i] = 0;
682  //  *** CLUSTERS ***      };
683      l1->nclstr1 =  Cluster->GetEntries();  
684          for(Int_t i=0;i<l1->nclstr1;i++){      l1->nclstr1=0;
685        l1->totCLlength=0;
686                  l1->view[i]     = ((TrkCluster *)Cluster->At(i))->view;      Int_t index=0;
687                  l1->maxs[i]     = ((TrkCluster *)Cluster->At(i))->maxs;      if(Cluster){
688                  // COMPLETARE //          Int_t i=0;
689                  // COMPLETARE //          for(Int_t ii=0;ii<Cluster->GetEntries();ii++){
690                  // COMPLETARE //              TrkCluster *clu = GetCluster(ii);
691                  // COMPLETARE //              // ----------------------------------------
692                  // COMPLETARE //              // attenzione!!
693                  // COMPLETARE //              // se il cluster non e` salvato (view = 0)
694                                // DEVE essere escluso dal common F77
695                // ----------------------------------------
696                if(clu->view != 0 ){
697                    l1->view[i]     = clu->view;
698                    l1->ladder[i]   = clu->GetLadder();
699                    l1->maxs[i]     = clu->maxs;
700                    l1->mult[i]     = clu->GetMultiplicity();
701                    l1->dedx[i]     = clu->GetSignal();
702                    l1->indstart[i] = index+1;
703                    l1->indmax[i]   = l1->indstart[i] + clu->indmax;
704                    l1->totCLlength += clu->CLlength;
705                    for(Int_t iw=0; iw < clu->CLlength; iw++){
706                        l1->clsignal[index] = clu->clsignal[iw];
707                        l1->clsigma[index]  = clu->clsigma[iw];
708                        l1->cladc[index]    = clu->cladc[iw];
709                        l1->clbad[index]    = clu->clbad[iw];
710                        index++;
711                    }
712                    i++;
713                }
714          }          }
715          // COMPLETARE //          l1->nclstr1 =  i;      
716          // COMPLETARE //      }
717          // COMPLETARE //  
718          // COMPLETARE //  //    return l1;
         // COMPLETARE //  
         // COMPLETARE //  
         return l1;  
719  }  }
720  //--------------------------------------  //--------------------------------------
721  //  //
722  //  //
723  //--------------------------------------  //--------------------------------------
724  void TrkLevel1::Clear(){  void TrkLevel1::Clear(){
725                
726          for(Int_t i=0; i<12 ; i++){      for(Int_t i=0; i<12 ; i++){
727                  good[i] = -1;          good[i] = -1;
728                  for(Int_t j=0; j<24 ; j++){          for(Int_t j=0; j<24 ; j++){
729                          cnev[j][i]     = 0;              cn[j][i]    = 0;
730                          cnnev[j][i] = 0;              cnn[j][i]   = 0;
731                  };          };
732          };      };
733          //  //    if(Cluster)Cluster->Clear("C");
734          Cluster->Clear();      if(Cluster)Cluster->Delete();
735        
736  }  }
737  //--------------------------------------  //--------------------------------------
738  //  //
739  //  //
740  //--------------------------------------  //--------------------------------------
741  void TrkLevel1::Delete(){  void TrkLevel1::Delete(){
742                
743          for(Int_t i=0; i<12 ; i++){  //    Clear();
744                  good[i] = -1;      if(Cluster)Cluster->Delete();
745                  for(Int_t j=0; j<24 ; j++){      if(Cluster)delete Cluster;
746                          cnev[j][i]     = 0;      
                         cnnev[j][i] = 0;  
                 };  
         };  
         //  
         Cluster->Delete();  
   
747  }  }
   
748  //--------------------------------------  //--------------------------------------
749  //  //
750  //  //
751  //--------------------------------------  //--------------------------------------
752  TrkCluster *TrkLevel1::GetCluster(int is){  TrkCluster *TrkLevel1::GetCluster(int is){
753    
754          if(is >= this->nclstr()){      if(!Cluster)return 0;
755                  cout << "** TrkLevel1::GetCluster(int) ** Cluster "<< is << " does not exits! " << endl;      if(is >= nclstr()){
756                  cout << "( Stored clusters nclstr() = "<< this->nclstr()<<" )" << endl;          cout << "** TrkLevel1::GetCluster(int) ** Cluster "<< is << " does not exits! " << endl;
757                  return 0;          cout << "( Stored clusters nclstr() = "<< this->nclstr()<<" )" << endl;
         }  
         TClonesArray &t = *(Cluster);  
         TrkCluster *cluster = (TrkCluster*)t[is];  
         return cluster;  
 }  
 //--------------------------------------  
 //  
 //  
 //--------------------------------------  
 /**  
  * Load Position-Finding-Algorythm parameters (call the F77 routine).  
  *  
  */  
 int TrkLevel1::LoadPfaParam(TString path){  
           
         if( strcmp(path_.path,path.Data()) ){  
                 cout <<"Loading p.f.a. parameters\n";  
                 strcpy(path_.path,path.Data());  
                 path_.pathlen = path.Length();  
                 path_.error   = 0;  
                 return readetaparam_();  
         }        
758          return 0;          return 0;
759        }
760        
761        TClonesArray &t = *(Cluster);
762        TrkCluster *cluster = (TrkCluster*)t[is];
763        return cluster;
764    }
765    
766    
767    // int TrkLevel1::GetPfaNbinsAngle(){
768    //     TrkParams::Load(4);
769    //     if( !TrkParams::IsLoaded(4) ){
770    //      cout << "int TrkLevel1::GetPfaNbinsAngle() --- ERROR --- p.f.a. parameters  not loaded"<<endl;
771    //      return 0;
772    //     }
773    //     return pfa_.nangbin;
774    // };
775    
776    // int TrkLevel1::GetPfaNbinsETA(){
777    //     TrkParams::Load(4);
778    //     if( !TrkParams::IsLoaded(4) ){
779    //      cout << "int TrkLevel1::GetPfaNbinsETA() --- ERROR --- p.f.a. parameters  not loaded"<<endl;
780    //      return 0;
781    //     }
782    //     return pfa_.netaval;
783    // };
784    
785    // /**
786    //  *
787    //  *
788    //  */
789    // float* TrkLevel1::GetPfaCoord(TString pfa, int nview, int nladder, int nang){
790    
791    //     TrkParams::Load(4);
792    //     if( !TrkParams::IsLoaded(4) ){
793    //      cout << "float* TrkLevel1::GetPfaCoord(TString pfa, int nview, int nladder, int nang) --- ERROR --- p.f.a. parameters  not loaded"<<endl;
794    //      return 0;
795    //     }
796      
797    //     int nbins = GetPfaNbinsETA();
798    //     if(!nbins)return 0;
799    
800    //     float *fcorr = new float [nbins];
801    
802    //     if(!pfa.CompareTo("ETA2",TString::kIgnoreCase)){
803    //      for(int ib=0; ib<nbins; ib++){
804    //          fcorr[ib] = pfa_.feta2[nang][nladder][nview][ib];
805    //          cout << pfa_.eta2[nang][ib] << " - " <<  pfa_.feta2[nang][nladder][nview][ib]<<endl;;
806    //      }
807    //     }else if (!pfa.CompareTo("ETA3",TString::kIgnoreCase)){
808    //      for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.feta3[nang][nladder][nview][ib];
809    //     }else if (!pfa.CompareTo("ETA4",TString::kIgnoreCase)){
810    //      for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.feta4[nang][nladder][nview][ib];
811    //     }else{
812    //      cout << pfa<<" pfa parameters not implemented "<<endl;
813    //      return 0;
814    //     }    
815    
816    //     return fcorr;
817    
818    // };
819    
820    // float* TrkLevel1::GetPfaAbs(TString pfa, int nang){
821      
822    //     TrkParams::Load(4);
823    //     if( !TrkParams::IsLoaded(4) ){
824    //      cout << "float* TrkLevel1::GetPfaAbs(TString pfa, int nang) --- ERROR --- p.f.a. parameters  not loaded"<<endl;
825    //      return 0;
826    //     }
827    
828    //     int nbins = GetPfaNbinsETA();
829    //     if(!nbins)return 0;
830    
831    //     float *fcorr = new float [nbins];
832    
833    //     if(!pfa.CompareTo("ETA2",TString::kIgnoreCase)){
834    //      for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.eta2[nang][ib];
835    //     }else if (!pfa.CompareTo("ETA3",TString::kIgnoreCase)){
836    //      for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.eta3[nang][ib];
837    //     }else if (!pfa.CompareTo("ETA4",TString::kIgnoreCase)){
838    //      for(int ib=0; ib<nbins; ib++)fcorr[ib] = pfa_.eta4[nang][ib];
839    //     }else{
840    //      cout << pfa<<" pfa parameters not implemented "<<endl;
841    //      return 0;
842    //     }    
843    
844    //     return fcorr;
845    
846    // };
847    
848    /**
849     * Method to call the F77 routine that performs level1->level2 processing.
850     * The level2 output is stored in a common block, which can be retrieved
851     * by mean of the method TrkLevel2::SetFromLevel2Struct().
852     * NB If the TrkLevel1 object is readout from a tree, and the
853     * TrkLevel1::ProcessEvent(int pfa) is used to reprocess the event, attention
854     * should be payed to the fact that single clusters (clusters not associated
855     * with any track) might not be stored. Full reprocessing should be done starting
856     * from level0 data.
857     */
858    //int TrkLevel1::ProcessEvent(int pfa){
859    int TrkLevel1::ProcessEvent(){
860    
861    //    cout << "int TrkLevel1::ProcessEvent()" << endl;
862        TrkParams::Load( );
863        if( !TrkParams::IsLoaded() )return 0;
864    
865        GetLevel1Struct();
866    
867    //    analysisflight_(&pfa);
868    //    TrkParams::SetPFA(pfa);
869        analysisflight_();
870    
871        return 1;
872    
873  }  }
874    
875    

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

  ViewVC Help
Powered by ViewVC 1.1.23