Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:55:54

0001 #ifndef ReducedTrackerTreeVariables_h
0002 #define ReducedTrackerTreeVariables_h
0003 
0004 // For ROOT types with '_t':
0005 #include <Rtypes.h>
0006 
0007 // container to hold those static module parameters needed for correct xPrime-Residual calculation (and others), determined with ideal geometry
0008 struct ReducedTrackerTreeVariables {
0009   ReducedTrackerTreeVariables() { this->clear(); }
0010 
0011   void clear() {
0012     subdetId = 0;
0013     nStrips = 0;
0014     uDirection = vDirection = wDirection = 0;
0015   }
0016 
0017   UInt_t subdetId, nStrips;
0018   Int_t uDirection, vDirection, wDirection;
0019 };
0020 
0021 #endif