4 using namespace EVENT ;
 
    8   LCFlagImpl::LCFlagImpl() : _flag(0) {}
 
   20     if( 0<=bit && bit<=31 &&  !
bitSet( bit) ){
 
   30     if( 0<=bit && bit<=31 &&  
bitSet( bit) ){
 
LCFlagImpl()
Constructor initializing flag with 0. 
virtual bool bitSet(int index) const 
Returns true if bit at given index is set. 
virtual void unsetBit(int bit)
Sets bit to 0. 
virtual int getFlag() const 
Returns the flag word. 
virtual void setBit(int bit)
Sets bit to 1.