Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members  

AlBjet.cpp

Go to the documentation of this file.
00001 
00002 //
00003 // Implementation of CLASS AlBjet
00004 // Concrete class for B-Jet, inherits from AlJet
00005 //
00006 // Author :  C. Delaere
00007 //
00009 
00010 #include "AlBjet.h"
00011 
00012 // default constructor : has to do something,
00013 // since it is not created out of qvec
00014 AlBjet::AlBjet()
00015 {
00016   Bproba  = 0;
00017 } 
00018 
00019 AlBjet::AlBjet(const AlBjet& oldAl):AlJet(oldAl)
00020 {
00021   Bproba = oldAl.Bproba;
00022 }
00023 
00024 AlBjet::AlBjet(const AlJet& oldAl, float proba = 0):AlJet(oldAl)
00025 {
00026   Bproba = proba;
00027 }
00028 
00029 void AlBjet::setBprobability(float proba) 
00030 { Bproba = proba; }
00031 
00032 float  AlBjet::getBprobability() const
00033 { return Bproba; }
00034 

Generated at Wed Jun 18 17:19:09 2003 for ALPHA++ by doxygen1.2.8.1 written by Dimitri van Heesch, © 1997-2001