Changeset 489 in PSPA


Ignore:
Timestamp:
Feb 10, 2014, 4:34:03 PM (10 years ago)
Author:
touze
Message:

nvx elts: quadrupole & sextupole

Location:
Interface_Web/trunk/pspaWT/sources
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • Interface_Web/trunk/pspaWT/sources/controler/src/nomDeLogiciel.cc

    r487 r489  
    8181void nomDeLogiciel::setCompatiblesElements()
    8282{
    83   cout << " nomDeLogiciel::setCompatiblesElements() " << program_ << endl;
     83  //cout << " nomDeLogiciel::setCompatiblesElements() " << program_ << endl;
    8484  switch (program_)
    8585    {
     
    138138  //xx
    139139
    140   cout << " nomDeLogiciel::doAcceptElement type : " << typdel << endl;
    141   cout << " nomDeLogiciel::doAcceptElement nb el/ acc. " << acceptedElements_.size() << endl;
     140  //cout << " nomDeLogiciel::doAcceptElement type : " << typdel << endl;
     141  //cout << " nomDeLogiciel::doAcceptElement nb el/ acc. " << acceptedElements_.size() << endl;
    142142  if (acceptedElements_.size() == 0 ) {
    143143    return TBoolError;
  • Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_abstractElementFactory.h

    r487 r489  
    7171  /* Enable the qpole element creation
    7272   */
    73   inline void setQPoleEnable(bool a) { isMPoleElementEnable = a;};
     73  inline void setQPoleEnable(bool a) { isQPoleElementEnable = a;};
    7474 
    7575 /* Enable the spole element creation
    7676   */
    77   inline void setSPoleEnable(bool a) { isMPoleElementEnable = a;};
     77  inline void setSPoleEnable(bool a) { isSPoleElementEnable = a;};
    7878 
    7979  GWt_elementDrift* createDriftElement();
  • Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_elementQpole.h

    r487 r489  
    2727  WImage* getImage();
    2828   
    29   inline string getMimeType() {return "htdocs/mpole.jpg";}
    30   inline string getSmallImageURL() {return "htdocs/mpole.jpg";}
    31   inline string getBigImageURL() {return "htdocs/mpole.jpg";}
    32   inline string getName() {return "mpole";}
     29  inline string getMimeType() {return "htdocs/qpole.jpg";}
     30  inline string getSmallImageURL() {return "htdocs/qpole.jpg";}
     31  inline string getBigImageURL() {return "htdocs/qpole.jpg";}
     32  inline string getName() {return "qpole";}
    3333 
    3434 private :
  • Interface_Web/trunk/pspaWT/sources/userInterface/include/GWt_elementSpole.h

    r487 r489  
    2727  WImage* getImage();
    2828   
    29   inline string getMimeType() {return "htdocs/mpole.jpg";}
    30   inline string getSmallImageURL() {return "htdocs/mpole.jpg";}
    31   inline string getBigImageURL() {return "htdocs/mpole.jpg";}
    32   inline string getName() {return "mpole";}
     29  inline string getMimeType() {return "htdocs/spole.jpg";}
     30  inline string getSmallImageURL() {return "htdocs/spole.jpg";}
     31  inline string getBigImageURL() {return "htdocs/spole.jpg";}
     32  inline string getName() {return "spole";}
    3333 
    3434 private :
  • Interface_Web/trunk/pspaWT/sources/userInterface/src/GWt_pspaApplication.cc

    r488 r489  
    6666  abstractElementFactory_->setSnapshotEnable(true);
    6767  abstractElementFactory_->setMPoleEnable(true);
     68  abstractElementFactory_->setQPoleEnable(true);
     69  abstractElementFactory_->setSPoleEnable(true);
     70
    6871  cout << " PspaApplication::PspaApplication abstractElementFactory REPUTEE CONSTRUITE " << endl;
     72
    6973  // include the styleSheetcd
    7074  WContainerWidget *mainContainerWidget = root();
Note: See TracChangeset for help on using the changeset viewer.