CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
AlignmentClusterFlag.cc
Go to the documentation of this file.
2 
3 
5  : detId_(0), hitFlag_(0)
6 {}
7 
8 
10  : detId_(id), hitFlag_(0)
11 {}
12 
13 
15  : detId_(acf.detId_), hitFlag_(acf.hitFlag_)
16 {}
17 
18 
20 {
21  //
22 }
23 
25 {
26  return ((hitFlag_ & (1<<0)) != 0);
27 }
28 
29 
31 {
32  return ((hitFlag_ & (1<<1)) != 0);
33 }
34 
36 {
37  hitFlag_ |= (1<<0);
38 }
39 
41 {
42  hitFlag_ |= (1<<1);
43 }
44 
46 {
47  detId_ = newdetid;
48 }
Definition: DetId.h:20
void SetDetId(const DetId &newdetid)