431 |
cnn[j][i]=0; |
cnn[j][i]=0; |
432 |
}; |
}; |
433 |
}; |
}; |
434 |
|
TrkParams::SetTrackingMode(); |
435 |
|
TrkParams::SetPrecisionFactor(); |
436 |
|
TrkParams::SetStepMin(); |
437 |
|
TrkParams::SetPFA(); |
438 |
} |
} |
439 |
//-------------------------------------- |
//-------------------------------------- |
440 |
// |
// |
877 |
* Method to call the F77 routine that performs level1->level2 processing. |
* Method to call the F77 routine that performs level1->level2 processing. |
878 |
* The level2 output is stored in a common block, which can be retrieved |
* The level2 output is stored in a common block, which can be retrieved |
879 |
* by mean of the method TrkLevel2::SetFromLevel2Struct(). |
* by mean of the method TrkLevel2::SetFromLevel2Struct(). |
|
* @param pfa Position finding algorythm used to reconstruct the track |
|
|
* Implemented algorythms: |
|
|
* 0 ETA (default) |
|
|
* 1 --- |
|
|
* 2 ETA2 |
|
|
* 3 ETA3 |
|
|
* 4 ETA4 |
|
|
* 10 COG |
|
|
* 11 COG1 |
|
|
* 12 COG2 |
|
|
* 13 COG3 |
|
|
* 14 COG4 |
|
880 |
* NB If the TrkLevel1 object is readout from a tree, and the |
* NB If the TrkLevel1 object is readout from a tree, and the |
881 |
* TrkLevel1::ProcessEvent(int pfa) is used to reprocess the event, attention |
* TrkLevel1::ProcessEvent(int pfa) is used to reprocess the event, attention |
882 |
* should be payed to the fact that single clusters (clusters not associated |
* should be payed to the fact that single clusters (clusters not associated |
891 |
|
|
892 |
GetLevel1Struct(); |
GetLevel1Struct(); |
893 |
|
|
894 |
analysisflight_(&pfa); |
// analysisflight_(&pfa); |
895 |
|
TrkParams::SetPFA(pfa); |
896 |
|
analysisflight_(); |
897 |
|
|
898 |
return 1; |
return 1; |
899 |
|
|