CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EBSrFlag.h
Go to the documentation of this file.
1 // -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: t; tab-width: 8; -*-
2 
3 #ifndef EBSRFLAG_H
4 #define EBSRFLAG_H
5 
9 
10 
14 class EBSrFlag: public EcalSrFlag {
15 public:
16  typedef EcalTrigTowerDetId key_type; //key for edm::SortedCollection
17 
18 public:
21  EBSrFlag() {};
22 
27  EBSrFlag(const EcalTrigTowerDetId& tt, const int& flag): ttId_(tt){
28  //SRP flag is coded on 3 bits:
29  if(flag<0 || flag>0x7) throw cms::Exception("InvalidValue", "srp flag greater than 0x7 or negative.");
30  flag_ = (unsigned char) flag;
31  }
32 
36  const EcalTrigTowerDetId& id() const { return ttId_;}
37 
38 private:
42 };
43 
44 
45 std::ostream& operator<<(std::ostream& s, const EBSrFlag& digi);
46 
47 #endif //EBSRFLAG_H not defined
unsigned char flag_
Definition: EcalSrFlag.h:76
EBSrFlag()
Definition: EBSrFlag.h:21
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:187
EcalTrigTowerDetId key_type
Definition: EBSrFlag.h:16
EcalTrigTowerDetId ttId_
Definition: EBSrFlag.h:41
EBSrFlag(const EcalTrigTowerDetId &tt, const int &flag)
Definition: EBSrFlag.h:27
const EcalTrigTowerDetId & id() const
Definition: EBSrFlag.h:36