Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Roadmap
Browse Source
View Tickets
Search
Context Navigation
Back to HelloWorld
HelloWorld
: Faisceau.php
File Faisceau.php,
231 bytes
(added by
/C=FR/O=CNRS/OU=UMR8607/CN=Christian Arnault/emailAddress=arnault@…
,
14 years ago
)
Line
1
<?php
2
3
class Faisceau
4
{
5
var $nom;
6
var $twiss;
7
var $énergie;
8
9
function Faisceau ($nom = "", $twiss = 0, $énergie = 0)
10
{
11
$this->nom = $nom;
12
$this->twiss = $twiss;
13
$this->énergie = $énergie;
14
}
15
};
16
17
?>
Download in other formats:
Plain Text
Original Format