00001 #ifndef BOUNDARYINFORMATION_H_ 00002 #define BOUNDARYINFORMATION_H_ 00003 00004 // system include files 00005 00006 #include "DataFormats/EcalDetId/interface/EcalSubdetector.h" 00007 00008 //using namespace edm; 00009 //using namespace std; 00010 00011 class BoundaryInformation { 00012 public: 00013 BoundaryInformation() { 00014 recHits = std::vector<EcalRecHit> (); 00015 detIds = std::vector<DetId> (); 00016 channelStatus = std::vector<int> (); 00017 boundaryEnergy = 0.; 00018 boundaryET = 0.; 00019 subdet = EcalSubdetector(); 00020 nextToBorder = false; 00021 } 00022 ; 00023 std::vector<EcalRecHit> recHits; 00024 std::vector<DetId> detIds; 00025 std::vector<int> channelStatus; 00026 double boundaryEnergy; 00027 double boundaryET; 00028 EcalSubdetector subdet; 00029 bool nextToBorder; 00030 }; 00031 00032 #endif /*BOUNDARYINFORMATION_H_*/