Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:49:37

0001 /*
0002 *
0003 * This is a part of CTPPS offline software.
0004 * Author:
0005 *   Andrea Bellora (andrea.bellora@cern.ch)
0006 *
0007 */
0008 #ifndef DataFormats_CTPPSReco_CTPPSPixelLocalTrackRecoInfo_H
0009 #define DataFormats_CTPPSReco_CTPPSPixelLocalTrackRecoInfo_H
0010 
0011 /// Track information byte for bx-shifted runs:
0012 /// reco_info = notShiftedRun    -> Default value for tracks reconstructed in non-bx-shifted ROCs
0013 /// reco_info = allShiftedPlanes -> Track reconstructed in a bx-shifted ROC with bx-shifted planes only
0014 /// reco_info = noShiftedPlanes  -> Track reconstructed in a bx-shifted ROC with non-bx-shifted planes only
0015 /// reco_info = mixedPlanes      -> Track reconstructed in a bx-shifted ROC both with bx-shifted and non-bx-shifted planes
0016 /// reco_info = invalid          -> Dummy value. Assigned when reco_info is not computed
0017 enum class CTPPSpixelLocalTrackReconstructionInfo {
0018   notShiftedRun = 0,
0019   allShiftedPlanes = 1,
0020   noShiftedPlanes = 2,
0021   mixedPlanes = 3,
0022   invalid = 5
0023 };
0024 
0025 #endif