Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:14:17

0001 #ifndef CaloDirection_h
0002 #define CaloDirection_h
0003 //The local directions
0004 /**
0005    \enum CaloDirection
0006 
0007    \brief Codes the local directions in the cell lattice.
0008 */
0009 enum CaloDirection {
0010   NONE,
0011   SOUTH,
0012   SOUTHEAST,
0013   SOUTHWEST,
0014   EAST,
0015   WEST,
0016   NORTHEAST,
0017   NORTHWEST,
0018   NORTH,
0019   DOWN,
0020   DOWNSOUTH,
0021   DOWNSOUTHEAST,
0022   DOWNSOUTHWEST,
0023   DOWNEAST,
0024   DOWNWEST,
0025   DOWNNORTHEAST,
0026   DOWNNORTHWEST,
0027   DOWNNORTH,
0028   UP,
0029   UPSOUTH,
0030   UPSOUTHEAST,
0031   UPSOUTHWEST,
0032   UPEAST,
0033   UPWEST,
0034   UPNORTHEAST,
0035   UPNORTHWEST,
0036   UPNORTH
0037 };
0038 
0039 //class ostream;
0040 #include <iosfwd>
0041 std::ostream& operator<<(std::ostream&, const CaloDirection&);
0042 
0043 #endif