CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/Fireworks/Core/src/FWDisplayProperties.cc

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 //
00003 // Package:     Core
00004 // Class  :     FWDisplayProperties
00005 //
00006 // Implementation:
00007 //     <Notes on implementation>
00008 //
00009 // Original Author:
00010 //         Created:  Thu Jan  3 17:05:44 EST 2008
00011 // $Id: FWDisplayProperties.cc,v 1.12 2010/06/18 10:17:15 yana Exp $
00012 //
00013 
00014 // system include files
00015 
00016 // user include files
00017 #include "Fireworks/Core/interface/FWDisplayProperties.h"
00018 #include "Fireworks/Core/interface/FWColorManager.h"
00019 
00020 // A static default property.
00021 const FWDisplayProperties FWDisplayProperties::defaultProperties
00022 (FWColorManager::getDefaultStartColorIndex(), true, 0);
00023 
00024 FWDisplayProperties::FWDisplayProperties(Color_t iColor,
00025                                          bool    isVisible,
00026                                          Char_t  transparency) 
00027    : m_color(iColor),
00028      m_isVisible(isVisible),
00029      m_transparency(transparency)
00030 {}