This repository has been archived by the owner on May 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #859 from JeffersonLab/iss642-fttrkDev
Iss642 fttrk dev
- Loading branch information
Showing
34 changed files
with
6,137 additions
and
789 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 20 additions & 9 deletions
29
reconstruction/ft/src/main/java/org/jlab/rec/ft/FTConstants.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,33 @@ | ||
/* | ||
* To change this license header, choose License Headers in Project Properties. | ||
* To change this template file, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
package org.jlab.rec.ft; | ||
|
||
/** | ||
* | ||
* @author devita | ||
* @author filippi | ||
*/ | ||
public class FTConstants { | ||
|
||
public static final int HODO_MIN_CLUSTER_SIZE = 2; // minimum size of hodo clusters for match to calorimeter | ||
|
||
public static final double CAL_HODO_DISTANCE_MATCHING = 3.0; // matching distance in cm | ||
public static final double CAL_HODO_TIME_MATCHING = 8; // matching time in ns | ||
public static final double CAL_HODO_DISTANCE_MATCHING = 3.0; // matching distance in cm | ||
public static final double CAL_HODO_TIME_MATCHING = 8; // matching time in ns (it was 8) | ||
|
||
public static final double CAL_TRK_DISTANCE_MATCHING = 3.; // matching distance in cm (it was 1.5) | ||
public static final double CAL_TRK_TIME_MATCHING = 200; // matching time in ns TOBECORRECTED (it was 30 - 300 - 100 - 150) | ||
|
||
public static final double TRK_STRIP_MIN_TIME = 50; // minimum time value associated to one strip | ||
public static final double TRK_STRIP_MAX_TIME = 350; // minimum time value associated to one strip | ||
|
||
public static final double CAL_TRK_DISTANCE_MATCHING = 1.5; // matching distance in cm | ||
public static final double CAL_TRK_TIME_MATCHING = 30; // matching time in ns TOBECORRECTED | ||
public static final double TRK_MIN_CROSS_NUMBER = 1; // minimum number of crosses to find a line in the tracker | ||
public static final double TRK1_TRK2_RADTOL = 0.05; // max tolerance for TRK0/TRK1 distance (3D) (was 1.-0.5) | ||
public static final double TRK1_TRK2_PHITOL = 0.07; // max tolerance for TRK0/TRK1 phi angular deviation (was 1.-0.7) | ||
public static final double TRK1_TRK2_THETATOL = 0.07; // max tolerance for TRK0/TRK1 theta angulare deviation (was 1.-0.7) | ||
|
||
public static final double TRK_ADC_MINIMUM = 18.; // check min threshold for FTTTRK ADCs (18) | ||
public static final double TRK_ADC_MAXIMUM = 2000.; // check max threshold for FTTTRK ADCs (18) was 1000 170122 | ||
public static final int TRK_MAX_STRIPS_FOR_TRUNCATED_MEAN = 20; // threshold for maxnumber of strips included in the truncated mean algo. | ||
public static final int TRK_MIN_CLUSTER_SIZE_CENTROID = 3; // minimum size of the cluster to provide a reliable location by its centroid | ||
public static final double TRK_MIN_CLUS_ENERGY = 20.; // minimum cluster energy to accept a signal cluster (20) | ||
public static final int TRK_MIN_CLUS_SIZE = 0; // minimum cluster size to form crosses (0: no limit on cluster size) // 2 is very strict | ||
public static final int TRK_MAXNUMBEROFHITS = 100; // maximum number of accepted hits in the tracker banks | ||
} |
Oops, something went wrong.