<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://ccl2it-formation.in2p3.fr/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gscamps</id>
	<title>L2IT Formation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://ccl2it-formation.in2p3.fr/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Gscamps"/>
	<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php/Special:Contributions/Gscamps"/>
	<updated>2026-05-26T20:05:28Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Tutorial_%E2%80%94_Basic_usage_of_CC-IN2P3&amp;diff=49</id>
		<title>Tutorial — Basic usage of CC-IN2P3</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Tutorial_%E2%80%94_Basic_usage_of_CC-IN2P3&amp;diff=49"/>
		<updated>2026-05-03T12:05:39Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: Created page with &amp;quot;{{Contribute}}  == Tutorial — Basic usage of CC-IN2P3 ==  === Introduction ===  This tutorial is part of a collaborative wiki: feel free to update it, modify it, or add relevant information for future users.  === Connecting to the computing center ===  From a local terminal on your computer, you can connect to the CC-IN2P3 server using SSH:  &amp;lt;pre&amp;gt; ssh &amp;lt;USERNAME&amp;gt;@cca.in2p3.fr &amp;lt;/pre&amp;gt;  After entering your username and password, if the connection is successful you should s...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Contribute}}&lt;br /&gt;
&lt;br /&gt;
== Tutorial — Basic usage of CC-IN2P3 ==&lt;br /&gt;
&lt;br /&gt;
=== Introduction ===&lt;br /&gt;
&lt;br /&gt;
This tutorial is part of a collaborative wiki: feel free to update it, modify it, or add relevant information for future users.&lt;br /&gt;
&lt;br /&gt;
=== Connecting to the computing center ===&lt;br /&gt;
&lt;br /&gt;
From a local terminal on your computer, you can connect to the CC-IN2P3 server using SSH:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ssh &amp;lt;USERNAME&amp;gt;@cca.in2p3.fr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After entering your username and password, if the connection is successful you should see a message similar to:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
################################################################################&lt;br /&gt;
               _________________________________________________&lt;br /&gt;
              |                                                 |&lt;br /&gt;
              | Bienvenue au Centre de Calcul de l&#039;IN2P3 / CNRS |&lt;br /&gt;
              |_________________________________________________|&lt;br /&gt;
&lt;br /&gt;
Pour votre utilisation quotidienne des serveurs interactifs,&lt;br /&gt;
merci de consulter le guide des bonnes pratiques :&lt;br /&gt;
https://doc.cc.in2p3.fr/fr/Daily-usage/access/cca-connect.html#cca-best-practices&lt;br /&gt;
&lt;br /&gt;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;
                ______________________________________________&lt;br /&gt;
               |                                              |&lt;br /&gt;
               | Welcome to the IN2P3 Computing Center / CNRS |&lt;br /&gt;
               |______________________________________________|&lt;br /&gt;
&lt;br /&gt;
For your daily use of interactive servers, please read the best practices guide:&lt;br /&gt;
https://doc.cc.in2p3.fr/en/Daily-usage/access/cca-connect.html#cca-best-practices&lt;br /&gt;
&lt;br /&gt;
################################################################################&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You now have access to a terminal on the computing center in Lyon.&lt;br /&gt;
&lt;br /&gt;
=== Preparing a job ===&lt;br /&gt;
&lt;br /&gt;
Create a new directory and move into it:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir test_hello_world&lt;br /&gt;
cd test_hello_world&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Copy an example C program:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cp /pbs/throng/l2it/tutoriel_exemple_file/hello_world_c/hello_world.c ./&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can inspect the file with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat hello_world.c&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Compile the code to create an executable:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
gcc hello_world.c -o hello_world&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Submitting a job ===&lt;br /&gt;
&lt;br /&gt;
Copy a job script:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cp /pbs/throng/l2it/tutoriel_exemple_file/hello_world_c/job.sh ./&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Inspect it with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat job.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Lines starting with #SBATCH provide instructions to the scheduler (job name, time limit, memory, etc.).  &lt;br /&gt;
The command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
./hello_world &amp;gt; hello_world.out&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
runs the program and saves the output.&lt;br /&gt;
&lt;br /&gt;
Submit the job:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sbatch job.sh&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You should see output similar to:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Submitted batch job XXXXXXXX&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Check the job status:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
squeue&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the job no longer appears, it has completed.&lt;br /&gt;
&lt;br /&gt;
View output files:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cat test_XXXX.log&lt;br /&gt;
cat hello_world.out&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Expected result:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Hello, World!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Cancelling a job ===&lt;br /&gt;
&lt;br /&gt;
To cancel a job:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
scancel &amp;lt;JOB_ID&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Find the job ID with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
squeue&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Downloading data locally ===&lt;br /&gt;
&lt;br /&gt;
To copy files from the computing center to your local machine:&lt;br /&gt;
&lt;br /&gt;
1. Exit the remote session:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
exit&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
2. Use scp from your local terminal:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
scp &amp;lt;USERNAME&amp;gt;@cca.in2p3.fr:test_hello_world/hello_world.out ./&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The file will be copied to your current directory.&lt;br /&gt;
&lt;br /&gt;
=== Further resources ===&lt;br /&gt;
&lt;br /&gt;
* https://doc.cc.in2p3.fr/index.html&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=48</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=48"/>
		<updated>2026-05-03T11:59:58Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Formation Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | How to contribute to this wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
This wiki is maintained by and for its users: people who actually need and use these resources in their daily work.&lt;br /&gt;
&lt;br /&gt;
Its quality depends directly on contributions from the community.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Do not hesitate to contribute, even if you are not an expert on the topic.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add missing information or useful links whenever you encounter them  &lt;br /&gt;
* Improve or correct existing pages when something is outdated or unclear  &lt;br /&gt;
* Share practical experience from courses, tools, or workflows  &lt;br /&gt;
* Even small edits are useful and help others  &lt;br /&gt;
* You can also create new pages and add a link to the main page&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If something is missing, unclear, or could be useful: it should be added.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You are also strongly encouraged to request new content or signal missing resources on the dedicated page:  &lt;br /&gt;
&#039;&#039;&#039;[[Needs]]&#039;&#039;&#039; (formation requests, missing tools, suggestions)&lt;br /&gt;
&lt;br /&gt;
There is no need to hesitate: this wiki is meant to evolve from the real needs of its users.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Available training resources ==&lt;br /&gt;
* [[On-site training courses in Toulouse]]&lt;br /&gt;
* [[On-site training courses outside Toulouse]]&lt;br /&gt;
* [[Remote training and self-learning resources]]&lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Basic tools]] — Linux, shell, SSH, clusters&lt;br /&gt;
* [[Tutorial — Basic usage of CC-IN2P3]]&lt;br /&gt;
* [[Version control tools]] — Git et GitLab&lt;br /&gt;
* [[python]] &lt;br /&gt;
* [[High-performance computing]]&lt;br /&gt;
* [[Deep Learning and Artificial intelligence]]&lt;br /&gt;
* [[Software quality and best practices]]&lt;br /&gt;
* [[Scientific programming and optimization]]&lt;br /&gt;
* [[C++ programming language]]&lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=47</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=47"/>
		<updated>2026-04-23T14:02:26Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: /* Resources and Tutorials */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Formation Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | How to contribute to this wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
This wiki is maintained by and for its users: people who actually need and use these resources in their daily work.&lt;br /&gt;
&lt;br /&gt;
Its quality depends directly on contributions from the community.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Do not hesitate to contribute, even if you are not an expert on the topic.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add missing information or useful links whenever you encounter them  &lt;br /&gt;
* Improve or correct existing pages when something is outdated or unclear  &lt;br /&gt;
* Share practical experience from courses, tools, or workflows  &lt;br /&gt;
* Even small edits are useful and help others  &lt;br /&gt;
* You can also create new pages and add a link to the main page&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If something is missing, unclear, or could be useful: it should be added.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You are also strongly encouraged to request new content or signal missing resources on the dedicated page:  &lt;br /&gt;
&#039;&#039;&#039;[[Needs]]&#039;&#039;&#039; (formation requests, missing tools, suggestions)&lt;br /&gt;
&lt;br /&gt;
There is no need to hesitate: this wiki is meant to evolve from the real needs of its users.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Available training resources ==&lt;br /&gt;
* [[On-site training courses in Toulouse]]&lt;br /&gt;
* [[On-site training courses outside Toulouse]]&lt;br /&gt;
* [[Remote training and self-learning resources]]&lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Basic tools]] — Linux, shell, SSH, clusters&lt;br /&gt;
* [[Version control tools]] — Git et GitLab&lt;br /&gt;
* [[python]] &lt;br /&gt;
* [[High-performance computing]]&lt;br /&gt;
* [[Deep Learning and Artificial intelligence]]&lt;br /&gt;
* [[Software quality and best practices]]&lt;br /&gt;
* [[Scientific programming and optimization]]&lt;br /&gt;
* [[C++ programming language]]&lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=46</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=46"/>
		<updated>2026-04-23T13:54:33Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Formation Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | How to contribute to this wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
This wiki is maintained by and for its users: people who actually need and use these resources in their daily work.&lt;br /&gt;
&lt;br /&gt;
Its quality depends directly on contributions from the community.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Do not hesitate to contribute, even if you are not an expert on the topic.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add missing information or useful links whenever you encounter them  &lt;br /&gt;
* Improve or correct existing pages when something is outdated or unclear  &lt;br /&gt;
* Share practical experience from courses, tools, or workflows  &lt;br /&gt;
* Even small edits are useful and help others  &lt;br /&gt;
* You can also create new pages and add a link to the main page&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If something is missing, unclear, or could be useful: it should be added.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You are also strongly encouraged to request new content or signal missing resources on the dedicated page:  &lt;br /&gt;
&#039;&#039;&#039;[[Needs]]&#039;&#039;&#039; (formation requests, missing tools, suggestions)&lt;br /&gt;
&lt;br /&gt;
There is no need to hesitate: this wiki is meant to evolve from the real needs of its users.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Available training resources ==&lt;br /&gt;
* [[On-site training courses in Toulouse]]&lt;br /&gt;
* [[On-site training courses outside Toulouse]]&lt;br /&gt;
* [[Remote training and self-learning resources]]&lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=45</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=45"/>
		<updated>2026-04-23T13:53:31Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Contribute}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Nuclear physics schools ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! School !! Type / Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| PhyNuBe (4th edition)&lt;br /&gt;
| Nuclear physics school (PhyNuBe series, advanced training in nuclear theory and related topics)&lt;br /&gt;
| https://indico.in2p3.fr/event/35170/&lt;br /&gt;
|-&lt;br /&gt;
| École Joliot-Curie&lt;br /&gt;
| Advanced school in nuclear physics and related fields (CNRS/IN2P3 training school)&lt;br /&gt;
| https://ejc.in2p3.fr/&lt;br /&gt;
|-&lt;br /&gt;
| TALENT School&lt;br /&gt;
| Training in Advanced Low-Energy Nuclear Theory (international nuclear theory school program)&lt;br /&gt;
| https://fribtheoryalliance.org/TALENT/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Database ==&lt;br /&gt;
&lt;br /&gt;
This page gathers commonly used nuclear physics databases, both theoretical and experimental. &lt;br /&gt;
It is intended as a quick reference for accessing nuclear structure data, mass models, and reaction data.&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Amedee Gogny-HFB nuclear chart&lt;br /&gt;
| Microscopic nuclear chart based on Gogny–HFB calculations&lt;br /&gt;
| https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm&lt;br /&gt;
|-&lt;br /&gt;
| Skyrme mass tables&lt;br /&gt;
| Nuclear mass tables based on Skyrme energy density functionals&lt;br /&gt;
| https://massexplorer.frib.msu.edu/content/DFTMassTables.html&lt;br /&gt;
|-&lt;br /&gt;
| BRUSLIB&lt;br /&gt;
| Nuclear data library (masses, level densities, etc.) based on BSkG3 calculations&lt;br /&gt;
| https://www.astro.ulb.ac.be/bruslib/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Nudat3&lt;br /&gt;
| Easy-to-use nuclear chart with basic experimental information&lt;br /&gt;
| https://www.nndc.bnl.gov/nudat3/&lt;br /&gt;
|-&lt;br /&gt;
| NNDC&lt;br /&gt;
| Comprehensive resource for nuclear data&lt;br /&gt;
| https://www.nndc.bnl.gov/&lt;br /&gt;
|-&lt;br /&gt;
| Interactive nuclear chart&lt;br /&gt;
| Nuclear chart mainly useful for visualization&lt;br /&gt;
| https://people.physics.anu.edu.au/~ecs103/chart/&lt;br /&gt;
|-&lt;br /&gt;
| JAEA fission data&lt;br /&gt;
| Fission yield data&lt;br /&gt;
| https://wwwndc.jaea.go.jp/cgi-bin/FPYfig?iso=nPu240&amp;amp;typ=g3&amp;amp;mode=m&lt;br /&gt;
|-&lt;br /&gt;
| EXFOR&lt;br /&gt;
| Extensive compilation of experimental nuclear reaction data&lt;br /&gt;
| https://www-nds.iaea.org/exfor/exfor.htm&lt;br /&gt;
|-&lt;br /&gt;
| AMDC&lt;br /&gt;
| Atomic mass evaluation database&lt;br /&gt;
| https://www-nds.iaea.org/amdc/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Useful links ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Resource !! Type / Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| GDR RESANET&lt;br /&gt;
| French nuclear theory community network&lt;br /&gt;
| https://resanet.in2p3.fr/&lt;br /&gt;
|-&lt;br /&gt;
| ECT*&lt;br /&gt;
| European Centre for Theoretical Studies in Nuclear Physics and Related Areas (workshops, programs)&lt;br /&gt;
| https://www.ectstar.eu/activities/workshops/&lt;br /&gt;
|-&lt;br /&gt;
| Institute for Nuclear Theory (INT)&lt;br /&gt;
| Theoretical nuclear physics institute, Seattle (workshops, programs, collaborations)&lt;br /&gt;
| https://www.int.washington.edu/&lt;br /&gt;
|-&lt;br /&gt;
| ESNT&lt;br /&gt;
| European School on Nuclear Theory (training programs, lectures, schools)&lt;br /&gt;
| https://esnt.cea.fr/index.php&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=44</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=44"/>
		<updated>2026-04-23T13:52:39Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: /* Useful links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Contribute}}&lt;br /&gt;
&lt;br /&gt;
== Database ==&lt;br /&gt;
&lt;br /&gt;
This page gathers commonly used nuclear physics databases, both theoretical and experimental. &lt;br /&gt;
It is intended as a quick reference for accessing nuclear structure data, mass models, and reaction data.&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Amedee Gogny-HFB nuclear chart&lt;br /&gt;
| Microscopic nuclear chart based on Gogny–HFB calculations&lt;br /&gt;
| https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm&lt;br /&gt;
|-&lt;br /&gt;
| Skyrme mass tables&lt;br /&gt;
| Nuclear mass tables based on Skyrme energy density functionals&lt;br /&gt;
| https://massexplorer.frib.msu.edu/content/DFTMassTables.html&lt;br /&gt;
|-&lt;br /&gt;
| BRUSLIB&lt;br /&gt;
| Nuclear data library (masses, level densities, etc.) based on BSkG3 calculations&lt;br /&gt;
| https://www.astro.ulb.ac.be/bruslib/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Nudat3&lt;br /&gt;
| Easy-to-use nuclear chart with basic experimental information&lt;br /&gt;
| https://www.nndc.bnl.gov/nudat3/&lt;br /&gt;
|-&lt;br /&gt;
| NNDC&lt;br /&gt;
| Comprehensive resource for nuclear data&lt;br /&gt;
| https://www.nndc.bnl.gov/&lt;br /&gt;
|-&lt;br /&gt;
| Interactive nuclear chart&lt;br /&gt;
| Nuclear chart mainly useful for visualization&lt;br /&gt;
| https://people.physics.anu.edu.au/~ecs103/chart/&lt;br /&gt;
|-&lt;br /&gt;
| JAEA fission data&lt;br /&gt;
| Fission yield data&lt;br /&gt;
| https://wwwndc.jaea.go.jp/cgi-bin/FPYfig?iso=nPu240&amp;amp;typ=g3&amp;amp;mode=m&lt;br /&gt;
|-&lt;br /&gt;
| EXFOR&lt;br /&gt;
| Extensive compilation of experimental nuclear reaction data&lt;br /&gt;
| https://www-nds.iaea.org/exfor/exfor.htm&lt;br /&gt;
|-&lt;br /&gt;
| AMDC&lt;br /&gt;
| Atomic mass evaluation database&lt;br /&gt;
| https://www-nds.iaea.org/amdc/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Useful links ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Resource !! Type / Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| GDR RESANET&lt;br /&gt;
| French nuclear theory community network&lt;br /&gt;
| https://resanet.in2p3.fr/&lt;br /&gt;
|-&lt;br /&gt;
| ECT*&lt;br /&gt;
| European Centre for Theoretical Studies in Nuclear Physics and Related Areas (workshops, programs)&lt;br /&gt;
| https://www.ectstar.eu/activities/workshops/&lt;br /&gt;
|-&lt;br /&gt;
| Institute for Nuclear Theory (INT)&lt;br /&gt;
| Theoretical nuclear physics institute, Seattle (workshops, programs, collaborations)&lt;br /&gt;
| https://www.int.washington.edu/&lt;br /&gt;
|-&lt;br /&gt;
| ESNT&lt;br /&gt;
| European School on Nuclear Theory (training programs, lectures, schools)&lt;br /&gt;
| https://esnt.cea.fr/index.php&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Nuclear physics schools ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! School !! Type / Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| PhyNuBe (4th edition)&lt;br /&gt;
| Nuclear physics school (PhyNuBe series, advanced training in nuclear theory and related topics)&lt;br /&gt;
| https://indico.in2p3.fr/event/35170/&lt;br /&gt;
|-&lt;br /&gt;
| École Joliot-Curie&lt;br /&gt;
| Advanced school in nuclear physics and related fields (CNRS/IN2P3 training school)&lt;br /&gt;
| https://ejc.in2p3.fr/&lt;br /&gt;
|-&lt;br /&gt;
| TALENT School&lt;br /&gt;
| Training in Advanced Low-Energy Nuclear Theory (international nuclear theory school program)&lt;br /&gt;
| https://fribtheoryalliance.org/TALENT/&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Needs&amp;diff=43</id>
		<title>Needs</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Needs&amp;diff=43"/>
		<updated>2026-04-23T13:46:25Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: Created page with &amp;quot;= Needs and Requests =  This page is used to collect requests from L2IT members regarding: * missing training courses * missing documentation or tutorials * useful tools or resources that should be added to the wiki * improvements or clarifications of existing content  The goal is to ensure that this wiki evolves directly from the needs of its users.  &amp;#039;&amp;#039;&amp;#039;Do not hesitate to add a request, even if it is informal or incomplete.&amp;#039;&amp;#039;&amp;#039;  ----  == How to use this page ==  You can...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Needs and Requests =&lt;br /&gt;
&lt;br /&gt;
This page is used to collect requests from L2IT members regarding:&lt;br /&gt;
* missing training courses&lt;br /&gt;
* missing documentation or tutorials&lt;br /&gt;
* useful tools or resources that should be added to the wiki&lt;br /&gt;
* improvements or clarifications of existing content&lt;br /&gt;
&lt;br /&gt;
The goal is to ensure that this wiki evolves directly from the needs of its users.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Do not hesitate to add a request, even if it is informal or incomplete.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== How to use this page ==&lt;br /&gt;
&lt;br /&gt;
You can simply add a new item below using a short description:&lt;br /&gt;
* what you need&lt;br /&gt;
* why you need it (optional but helpful)&lt;br /&gt;
* any context or example if relevant&lt;br /&gt;
&lt;br /&gt;
There is no need for a strict format.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Requests ==&lt;br /&gt;
&lt;br /&gt;
=== Training ===&lt;br /&gt;
* (add your request here)&lt;br /&gt;
&lt;br /&gt;
=== Documentation / Tutorials ===&lt;br /&gt;
* (add your request here)&lt;br /&gt;
&lt;br /&gt;
=== Tools / Software ===&lt;br /&gt;
* (add your request here)&lt;br /&gt;
&lt;br /&gt;
=== Other ===&lt;br /&gt;
* (add your request here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Completed requests ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Once a need has been addressed (e.g. a page created, a course found, or a tutorial written), it can be moved here for tracking purposes.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* (resolved items)&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=42</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=42"/>
		<updated>2026-04-23T13:45:23Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Formation Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | How to contribute to this wiki&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
This wiki is maintained by and for its users: people who actually need and use these resources in their daily work.&lt;br /&gt;
&lt;br /&gt;
Its quality depends directly on contributions from the community.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Do not hesitate to contribute, even if you are not an expert on the topic.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add missing information or useful links whenever you encounter them  &lt;br /&gt;
* Improve or correct existing pages when something is outdated or unclear  &lt;br /&gt;
* Share practical experience from courses, tools, or workflows  &lt;br /&gt;
* Even small edits are useful and help others  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If something is missing, unclear, or could be useful: it should be added.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You are also strongly encouraged to request new content or signal missing resources on the dedicated page:  &lt;br /&gt;
&#039;&#039;&#039;[[Needs]]&#039;&#039;&#039; (formation requests, missing tools, suggestions)&lt;br /&gt;
&lt;br /&gt;
There is no need to hesitate: this wiki is meant to evolve from the real needs of its users.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Available training resources ==&lt;br /&gt;
* [[On-site training courses in Toulouse]]&lt;br /&gt;
* [[On-site training courses outside Toulouse]]&lt;br /&gt;
* [[Remote training and self-learning resources]]&lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Remote_training_and_self-learning_resources&amp;diff=41</id>
		<title>Remote training and self-learning resources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Remote_training_and_self-learning_resources&amp;diff=41"/>
		<updated>2026-04-23T13:36:08Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Remote training courses ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you attend one of these training courses, please consider adding a short review below. Feedback (content, difficulty, usefulness, relevance) is very valuable for improving this list.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Gray Scott School ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; Online school / advanced scientific computing  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://cta-lapp.pages.in2p3.fr/COURS/GRAY_SCOTT_REVOLUTIONS/GrayScottRevolution/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Training material and lectures related to computational physics and numerical methods.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== CNRS FIDLE - Deep Learning training ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; Online training (CNRS)  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://www.fidle.cnrs.fr/w3/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Training program on deep learning provided by CNRS, including lectures and practical notebooks.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== France Université Numérique (FUN) ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; MOOC platform  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://www.fun-mooc.fr/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Platform offering a wide range of online courses from French universities.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== HSF Training Center ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; High Energy Physics software training  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://hsf-training.org/training-center/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Training materials for HEP software, computing, and analysis tools.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== BSSw (Better Scientific Software) ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; Scientific software engineering resources  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://bssw.io/items&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Collection of best practices, articles, and tutorials for scientific software development.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Software Carpentry ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; Programming and computing training  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://software-carpentry.org/lessons/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Lessons on programming, version control, and computational skills for scientists.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== OpenClassrooms ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; Online learning platform  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://openclassrooms.com/fr/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Wide range of professional and technical online courses.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Remote_training_and_self-learning_resources&amp;diff=40</id>
		<title>Remote training and self-learning resources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Remote_training_and_self-learning_resources&amp;diff=40"/>
		<updated>2026-04-23T13:33:29Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: Created page with &amp;quot;== Remote training courses ==  &amp;#039;&amp;#039;If you attend one of these training courses, please consider adding a short review below. Feedback (content, difficulty, usefulness, relevance) is very valuable for improving this list.&amp;#039;&amp;#039;  ----  === Remote training ===  == Gray Scott School ==  * &amp;#039;&amp;#039;&amp;#039;Type:&amp;#039;&amp;#039;&amp;#039; Online school / advanced scientific computing   * &amp;#039;&amp;#039;&amp;#039;Link:&amp;#039;&amp;#039;&amp;#039; https://cta-lapp.pages.in2p3.fr/COURS/GRAY_SCOTT_REVOLUTIONS/GrayScottRevolution/  &amp;#039;&amp;#039;&amp;#039;Description:&amp;#039;&amp;#039;&amp;#039;   Training material...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Remote training courses ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you attend one of these training courses, please consider adding a short review below. Feedback (content, difficulty, usefulness, relevance) is very valuable for improving this list.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Remote training ===&lt;br /&gt;
&lt;br /&gt;
== Gray Scott School ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; Online school / advanced scientific computing  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://cta-lapp.pages.in2p3.fr/COURS/GRAY_SCOTT_REVOLUTIONS/GrayScottRevolution/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Training material and lectures related to computational physics and numerical methods.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== CNRS FIDLE - Deep Learning training ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; Online training (CNRS)  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://www.fidle.cnrs.fr/w3/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Training program on deep learning provided by CNRS, including lectures and practical notebooks.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Self-learning resources ===&lt;br /&gt;
&lt;br /&gt;
== France Université Numérique (FUN) ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; MOOC platform  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://www.fun-mooc.fr/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Platform offering a wide range of online courses from French universities.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== HSF Training Center ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; High Energy Physics software training  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://hsf-training.org/training-center/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Training materials for HEP software, computing, and analysis tools.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== BSSw (Better Scientific Software) ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; Scientific software engineering resources  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://bssw.io/items&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Collection of best practices, articles, and tutorials for scientific software development.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Software Carpentry ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; Programming and computing training  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://software-carpentry.org/lessons/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Lessons on programming, version control, and computational skills for scientists.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== OpenClassrooms ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Type:&#039;&#039;&#039; Online learning platform  &lt;br /&gt;
* &#039;&#039;&#039;Link:&#039;&#039;&#039; https://openclassrooms.com/fr/&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Wide range of professional and technical online courses.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=39</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=39"/>
		<updated>2026-04-23T13:33:17Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Formation Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | Contributing guidelines&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add content even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* Feel free to correct or improve any page  &lt;br /&gt;
* Clarity is more important than formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Available training resources ==&lt;br /&gt;
* [[On-site training courses in Toulouse]]&lt;br /&gt;
* [[On-site training courses outside Toulouse]]&lt;br /&gt;
* [[Remote training and self-learning resources]]&lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=On-site_training_courses_outside_Toulouse&amp;diff=38</id>
		<title>On-site training courses outside Toulouse</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=On-site_training_courses_outside_Toulouse&amp;diff=38"/>
		<updated>2026-04-23T13:30:46Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: Created page with &amp;quot;== On-site training courses outside Toulouse ==  &amp;#039;&amp;#039;If you attend one of these training courses, please consider adding a short review in the corresponding section below. Feedback (content, difficulty, usefulness, relevance) is very valuable for improving and maintaining this list.&amp;#039;&amp;#039;  The training courses listed below are selected to meet the needs of L2IT, as identified by the Task Force. They are offered regularly and are open to L2IT members, although they take place o...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== On-site training courses outside Toulouse ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you attend one of these training courses, please consider adding a short review in the corresponding section below. Feedback (content, difficulty, usefulness, relevance) is very valuable for improving and maintaining this list.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The training courses listed below are selected to meet the needs of L2IT, as identified by the Task Force. They are offered regularly and are open to L2IT members, although they take place outside Toulouse.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== IDRIS - Modern scientific C++ ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Frequency:&#039;&#039;&#039; 1–2 times per year (3-day course)  &lt;br /&gt;
* &#039;&#039;&#039;Location:&#039;&#039;&#039; IDRIS, Orsay (91)  &lt;br /&gt;
* &#039;&#039;&#039;Language:&#039;&#039;&#039; French  &lt;br /&gt;
* &#039;&#039;&#039;Target audience:&#039;&#039;&#039; Researchers and engineers using or having used older C++ standards (pre C++11) who want to modernize their skills for scientific computing and data processing  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
* Understand limitations of C++98  &lt;br /&gt;
* Learn modern C++ (C++11/14/17/20) features  &lt;br /&gt;
* Explore the Standard Library in depth  &lt;br /&gt;
* Address scientific computing use cases  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reference:&#039;&#039;&#039; http://www.idris.fr/formations/cplusplus/fiche-cplusplus.html  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== IDRIS - Practical introduction to deep learning (IPDL) ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Frequency:&#039;&#039;&#039; 2–4 times per year (2-day course)  &lt;br /&gt;
* &#039;&#039;&#039;Location:&#039;&#039;&#039; IDRIS, Orsay (91)  &lt;br /&gt;
* &#039;&#039;&#039;Language:&#039;&#039;&#039; French, English slides  &lt;br /&gt;
* &#039;&#039;&#039;Target audience:&#039;&#039;&#039; Beginners in Artificial Intelligence with basic prerequisites (engineers, researchers, developers, PhD students, etc.)  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
* Introduction to fundamental deep learning concepts  &lt;br /&gt;
* Focus on understanding core principles and best practices  &lt;br /&gt;
* Preparation for more advanced architectures and techniques  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reference:&#039;&#039;&#039; http://www.idris.fr/formations/ipdl/fiche-ipdl.html  &lt;br /&gt;
&#039;&#039;&#039;Materials:&#039;&#039;&#039; http://www.idris.fr/formations/ipdl/  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== IDRIS - Deep learning architectures (ArchDL) ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Frequency:&#039;&#039;&#039; 2–4 times per year (2-day course, usually following IPDL)  &lt;br /&gt;
* &#039;&#039;&#039;Location:&#039;&#039;&#039; IDRIS, Orsay (91)  &lt;br /&gt;
* &#039;&#039;&#039;Language:&#039;&#039;&#039; French, English slides  &lt;br /&gt;
* &#039;&#039;&#039;Target audience:&#039;&#039;&#039; Users with prior exposure to deep learning (self-taught, academic, or professional), especially those who followed IPDL  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
* Overview of neural network architectures  &lt;br /&gt;
* Applications to images, audio, text, and graphs  &lt;br /&gt;
* Focus on understanding model design and structure  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reference:&#039;&#039;&#039; http://www.idris.fr/formations/archdl/fiche-archdl.html  &lt;br /&gt;
&#039;&#039;&#039;Materials:&#039;&#039;&#039; http://www.idris.fr/formations/archdl/  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== CERN - ATLAS Software Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Frequency:&#039;&#039;&#039; 4 times per year (5-day course)  &lt;br /&gt;
* &#039;&#039;&#039;Location:&#039;&#039;&#039; CERN or remote depending on session  &lt;br /&gt;
* &#039;&#039;&#039;Language:&#039;&#039;&#039; English  &lt;br /&gt;
* &#039;&#039;&#039;Target audience:&#039;&#039;&#039; ATLAS collaboration members interested in analysis software and physics tools  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;&lt;br /&gt;
* Theoretical introduction and hands-on exercises  &lt;br /&gt;
* End-to-end data analysis workflow in ATLAS  &lt;br /&gt;
* Practical use of ATLAS software tools  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reference:&#039;&#039;&#039; https://atlassoftwaredocs.web.cern.ch/analysis-software/ASWTutorial/  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=37</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=37"/>
		<updated>2026-04-23T13:30:08Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Formation Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | Contributing guidelines&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add content even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* Feel free to correct or improve any page  &lt;br /&gt;
* Clarity is more important than formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Available training resources ==&lt;br /&gt;
* [[On-site training courses in Toulouse]]&lt;br /&gt;
* [[On-site training courses outside Toulouse]]&lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=On-site_training_courses_in_Toulouse&amp;diff=36</id>
		<title>On-site training courses in Toulouse</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=On-site_training_courses_in_Toulouse&amp;diff=36"/>
		<updated>2026-04-23T13:27:07Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Contribute}}&lt;br /&gt;
&lt;br /&gt;
== On-site training courses in Toulouse ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you attend one of these training courses, please consider adding a short review in the corresponding section below. Feedback (content, difficulty, usefulness) is very valuable for improving and maintaining this list.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The training courses listed below are selected to meet the needs of L2IT, as identified by the Task Force. They are delivered regularly and are open to members of L2IT in Toulouse.&lt;br /&gt;
&lt;br /&gt;
== CALMIP - Introduction to HPC computing systems ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Frequency:&#039;&#039;&#039; 1–2 times per year  &lt;br /&gt;
* &#039;&#039;&#039;Location:&#039;&#039;&#039; CALMIP, Espace Clément Ader  &lt;br /&gt;
* &#039;&#039;&#039;Language:&#039;&#039;&#039; French  &lt;br /&gt;
* &#039;&#039;&#039;Target audience:&#039;&#039;&#039; Researchers, PhD students, and interns who need to use HPC resources  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
The Midi-Pyrénées computing center (CALMIP) offers introductory sessions on the use of supercomputers (notably its system Olympe until 2025).  &lt;br /&gt;
Topics include system access, module environments, job submission, and storage usage. The content is transferable to other HPC systems (CC-IN2P3, TREX, etc.).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== IMFT / Toulouse INP - Linux usage ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Frequency:&#039;&#039;&#039; Once per year (spring)  &lt;br /&gt;
* &#039;&#039;&#039;Location:&#039;&#039;&#039; Institut de Mécanique des Fluides de Toulouse, Île du Ramier  &lt;br /&gt;
* &#039;&#039;&#039;Language:&#039;&#039;&#039; French, English slides  &lt;br /&gt;
* &#039;&#039;&#039;Target audience:&#039;&#039;&#039; Beginners in Linux systems  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Training provided by CoSiNus (IMFT). Introduction to Linux: terminal, file systems, basic commands, and SSH remote access.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== IMFT / Toulouse INP - Git and GitLab ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Frequency:&#039;&#039;&#039; Once per year (spring)  &lt;br /&gt;
* &#039;&#039;&#039;Location:&#039;&#039;&#039; Institut de Mécanique des Fluides de Toulouse, Île du Ramier  &lt;br /&gt;
* &#039;&#039;&#039;Language:&#039;&#039;&#039; French, English slides  &lt;br /&gt;
* &#039;&#039;&#039;Target audience:&#039;&#039;&#039; Beginners in Git  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Introduction to Git version control, basic workflows, remote repositories, and GitLab usage. Includes a practical session with conflict resolution exercises.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== OMP - Introduction to Julia for beginner scientists ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Frequency:&#039;&#039;&#039; 1–2 times per year  &lt;br /&gt;
* &#039;&#039;&#039;Location:&#039;&#039;&#039; IRAP / OMP  &lt;br /&gt;
* &#039;&#039;&#039;Language:&#039;&#039;&#039; French  &lt;br /&gt;
* &#039;&#039;&#039;Target audience:&#039;&#039;&#039; Beginner scientists  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Introduction to the Julia programming language as an alternative to Python, with performance close to compiled languages. Based on Jupyter notebooks over half a day.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=On-site_training_courses_in_Toulouse&amp;diff=35</id>
		<title>On-site training courses in Toulouse</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=On-site_training_courses_in_Toulouse&amp;diff=35"/>
		<updated>2026-04-23T13:26:31Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: Created page with &amp;quot;== On-site training courses in Toulouse ==  &amp;#039;&amp;#039;If you attend one of these training courses, please consider adding a short review in the corresponding section below. Feedback (content, difficulty, usefulness) is very valuable for improving and maintaining this list.&amp;#039;&amp;#039;  The training courses listed below are selected to meet the needs of L2IT, as identified by the Task Force. They are delivered regularly and are open to members of L2IT in Toulouse.  == CALMIP - Introduction...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== On-site training courses in Toulouse ==&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If you attend one of these training courses, please consider adding a short review in the corresponding section below. Feedback (content, difficulty, usefulness) is very valuable for improving and maintaining this list.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
The training courses listed below are selected to meet the needs of L2IT, as identified by the Task Force. They are delivered regularly and are open to members of L2IT in Toulouse.&lt;br /&gt;
&lt;br /&gt;
== CALMIP - Introduction to HPC computing systems ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Frequency:&#039;&#039;&#039; 1–2 times per year  &lt;br /&gt;
* &#039;&#039;&#039;Location:&#039;&#039;&#039; CALMIP, Espace Clément Ader  &lt;br /&gt;
* &#039;&#039;&#039;Language:&#039;&#039;&#039; French  &lt;br /&gt;
* &#039;&#039;&#039;Target audience:&#039;&#039;&#039; Researchers, PhD students, and interns who need to use HPC resources  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
The Midi-Pyrénées computing center (CALMIP) offers introductory sessions on the use of supercomputers (notably its system Olympe until 2025).  &lt;br /&gt;
Topics include system access, module environments, job submission, and storage usage. The content is transferable to other HPC systems (CC-IN2P3, TREX, etc.).&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== IMFT / Toulouse INP - Linux usage ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Frequency:&#039;&#039;&#039; Once per year (spring)  &lt;br /&gt;
* &#039;&#039;&#039;Location:&#039;&#039;&#039; Institut de Mécanique des Fluides de Toulouse, Île du Ramier  &lt;br /&gt;
* &#039;&#039;&#039;Language:&#039;&#039;&#039; French, English slides  &lt;br /&gt;
* &#039;&#039;&#039;Target audience:&#039;&#039;&#039; Beginners in Linux systems  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Training provided by CoSiNus (IMFT). Introduction to Linux: terminal, file systems, basic commands, and SSH remote access.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== IMFT / Toulouse INP - Git and GitLab ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Frequency:&#039;&#039;&#039; Once per year (spring)  &lt;br /&gt;
* &#039;&#039;&#039;Location:&#039;&#039;&#039; Institut de Mécanique des Fluides de Toulouse, Île du Ramier  &lt;br /&gt;
* &#039;&#039;&#039;Language:&#039;&#039;&#039; French, English slides  &lt;br /&gt;
* &#039;&#039;&#039;Target audience:&#039;&#039;&#039; Beginners in Git  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Introduction to Git version control, basic workflows, remote repositories, and GitLab usage. Includes a practical session with conflict resolution exercises.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== OMP - Introduction to Julia for beginner scientists ==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Frequency:&#039;&#039;&#039; 1–2 times per year  &lt;br /&gt;
* &#039;&#039;&#039;Location:&#039;&#039;&#039; IRAP / OMP  &lt;br /&gt;
* &#039;&#039;&#039;Language:&#039;&#039;&#039; French  &lt;br /&gt;
* &#039;&#039;&#039;Target audience:&#039;&#039;&#039; Beginner scientists  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Description:&#039;&#039;&#039;  &lt;br /&gt;
Introduction to the Julia programming language as an alternative to Python, with performance close to compiled languages. Based on Jupyter notebooks over half a day.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Reviews:&#039;&#039;&#039;&lt;br /&gt;
* (add your feedback here)&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=34</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=34"/>
		<updated>2026-04-23T13:21:45Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Formation Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | Contributing guidelines&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add content even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* Feel free to correct or improve any page  &lt;br /&gt;
* Clarity is more important than formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Available training resources ==&lt;br /&gt;
* [[On-site training courses in Toulouse]]&lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=33</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=33"/>
		<updated>2026-04-23T13:11:58Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Formation Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | Contributing guidelines&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add content even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* Feel free to correct or improve any page  &lt;br /&gt;
* Clarity is more important than formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=32</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=32"/>
		<updated>2026-04-23T13:11:41Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Formation Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | Contributing guidelines&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add content even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* Feel free to correct or improve any page  &lt;br /&gt;
* Clarity is more important than formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=31</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=31"/>
		<updated>2026-04-23T08:39:20Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Formation Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | Contributing guidelines&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add content even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* Feel free to correct or improve any page  &lt;br /&gt;
* Clarity is more important than formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=30</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=30"/>
		<updated>2026-04-22T13:55:03Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: /* Useful links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Contribute}}&lt;br /&gt;
&lt;br /&gt;
== Database ==&lt;br /&gt;
&lt;br /&gt;
This page gathers commonly used nuclear physics databases, both theoretical and experimental. &lt;br /&gt;
It is intended as a quick reference for accessing nuclear structure data, mass models, and reaction data.&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Amedee Gogny-HFB nuclear chart&lt;br /&gt;
| Microscopic nuclear chart based on Gogny–HFB calculations&lt;br /&gt;
| https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm&lt;br /&gt;
|-&lt;br /&gt;
| Skyrme mass tables&lt;br /&gt;
| Nuclear mass tables based on Skyrme energy density functionals&lt;br /&gt;
| https://massexplorer.frib.msu.edu/content/DFTMassTables.html&lt;br /&gt;
|-&lt;br /&gt;
| BRUSLIB&lt;br /&gt;
| Nuclear data library (masses, level densities, etc.) based on BSkG3 calculations&lt;br /&gt;
| https://www.astro.ulb.ac.be/bruslib/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Nudat3&lt;br /&gt;
| Easy-to-use nuclear chart with basic experimental information&lt;br /&gt;
| https://www.nndc.bnl.gov/nudat3/&lt;br /&gt;
|-&lt;br /&gt;
| NNDC&lt;br /&gt;
| Comprehensive resource for nuclear data&lt;br /&gt;
| https://www.nndc.bnl.gov/&lt;br /&gt;
|-&lt;br /&gt;
| Interactive nuclear chart&lt;br /&gt;
| Nuclear chart mainly useful for visualization&lt;br /&gt;
| https://people.physics.anu.edu.au/~ecs103/chart/&lt;br /&gt;
|-&lt;br /&gt;
| JAEA fission data&lt;br /&gt;
| Fission yield data&lt;br /&gt;
| https://wwwndc.jaea.go.jp/cgi-bin/FPYfig?iso=nPu240&amp;amp;typ=g3&amp;amp;mode=m&lt;br /&gt;
|-&lt;br /&gt;
| EXFOR&lt;br /&gt;
| Extensive compilation of experimental nuclear reaction data&lt;br /&gt;
| https://www-nds.iaea.org/exfor/exfor.htm&lt;br /&gt;
|-&lt;br /&gt;
| AMDC&lt;br /&gt;
| Atomic Mass Data Center&lt;br /&gt;
| https://www-nds.iaea.org/amdc/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Useful links ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Resource !! Type / Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| GDR resanet&lt;br /&gt;
| French nuclear theory community network&lt;br /&gt;
| https://resanet.in2p3.fr/&lt;br /&gt;
|-&lt;br /&gt;
| ECT*&lt;br /&gt;
| European Centre for Theoretical Studies in Nuclear Physics and Related Areas (workshops, programs)&lt;br /&gt;
| https://www.ectstar.eu/activities/workshops/&lt;br /&gt;
|-&lt;br /&gt;
| Institute for Nuclear Theory (INT)&lt;br /&gt;
| Theoretical nuclear physics institute, Seattle (workshops, programs, collaborations)&lt;br /&gt;
| https://www.int.washington.edu/&lt;br /&gt;
|-&lt;br /&gt;
| ESNT&lt;br /&gt;
| European School on Nuclear Theory (training programs, lectures, schools)&lt;br /&gt;
| https://esnt.cea.fr/index.php&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=29</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=29"/>
		<updated>2026-04-22T13:54:28Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: /* Useful links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Contribute}}&lt;br /&gt;
&lt;br /&gt;
== Database ==&lt;br /&gt;
&lt;br /&gt;
This page gathers commonly used nuclear physics databases, both theoretical and experimental. &lt;br /&gt;
It is intended as a quick reference for accessing nuclear structure data, mass models, and reaction data.&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Amedee Gogny-HFB nuclear chart&lt;br /&gt;
| Microscopic nuclear chart based on Gogny–HFB calculations&lt;br /&gt;
| https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm&lt;br /&gt;
|-&lt;br /&gt;
| Skyrme mass tables&lt;br /&gt;
| Nuclear mass tables based on Skyrme energy density functionals&lt;br /&gt;
| https://massexplorer.frib.msu.edu/content/DFTMassTables.html&lt;br /&gt;
|-&lt;br /&gt;
| BRUSLIB&lt;br /&gt;
| Nuclear data library (masses, level densities, etc.) based on BSkG3 calculations&lt;br /&gt;
| https://www.astro.ulb.ac.be/bruslib/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Nudat3&lt;br /&gt;
| Easy-to-use nuclear chart with basic experimental information&lt;br /&gt;
| https://www.nndc.bnl.gov/nudat3/&lt;br /&gt;
|-&lt;br /&gt;
| NNDC&lt;br /&gt;
| Comprehensive resource for nuclear data&lt;br /&gt;
| https://www.nndc.bnl.gov/&lt;br /&gt;
|-&lt;br /&gt;
| Interactive nuclear chart&lt;br /&gt;
| Nuclear chart mainly useful for visualization&lt;br /&gt;
| https://people.physics.anu.edu.au/~ecs103/chart/&lt;br /&gt;
|-&lt;br /&gt;
| JAEA fission data&lt;br /&gt;
| Fission yield data&lt;br /&gt;
| https://wwwndc.jaea.go.jp/cgi-bin/FPYfig?iso=nPu240&amp;amp;typ=g3&amp;amp;mode=m&lt;br /&gt;
|-&lt;br /&gt;
| EXFOR&lt;br /&gt;
| Extensive compilation of experimental nuclear reaction data&lt;br /&gt;
| https://www-nds.iaea.org/exfor/exfor.htm&lt;br /&gt;
|-&lt;br /&gt;
| AMDC&lt;br /&gt;
| Atomic Mass Data Center&lt;br /&gt;
| https://www-nds.iaea.org/amdc/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Useful links ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Resource !! Type / Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| GDR RESeda&lt;br /&gt;
| French nuclear theory community network&lt;br /&gt;
| https://resanet.in2p3.fr/&lt;br /&gt;
|-&lt;br /&gt;
| ECT*&lt;br /&gt;
| European Centre for Theoretical Studies in Nuclear Physics and Related Areas (workshops, programs)&lt;br /&gt;
| https://www.ectstar.eu/activities/workshops/&lt;br /&gt;
|-&lt;br /&gt;
| Institute for Nuclear Theory (INT)&lt;br /&gt;
| Theoretical nuclear physics institute, Seattle (workshops, programs, collaborations)&lt;br /&gt;
| https://www.int.washington.edu/&lt;br /&gt;
|-&lt;br /&gt;
| ESNT&lt;br /&gt;
| European School on Nuclear Theory (training programs, lectures, schools)&lt;br /&gt;
| https://esnt.cea.fr/index.php&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=28</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=28"/>
		<updated>2026-04-22T13:42:15Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Contribute}}&lt;br /&gt;
&lt;br /&gt;
== Database ==&lt;br /&gt;
&lt;br /&gt;
This page gathers commonly used nuclear physics databases, both theoretical and experimental. &lt;br /&gt;
It is intended as a quick reference for accessing nuclear structure data, mass models, and reaction data.&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Amedee Gogny-HFB nuclear chart&lt;br /&gt;
| Microscopic nuclear chart based on Gogny–HFB calculations&lt;br /&gt;
| https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm&lt;br /&gt;
|-&lt;br /&gt;
| Skyrme mass tables&lt;br /&gt;
| Nuclear mass tables based on Skyrme energy density functionals&lt;br /&gt;
| https://massexplorer.frib.msu.edu/content/DFTMassTables.html&lt;br /&gt;
|-&lt;br /&gt;
| BRUSLIB&lt;br /&gt;
| Nuclear data library (masses, level densities, etc.) based on BSkG3 calculations&lt;br /&gt;
| https://www.astro.ulb.ac.be/bruslib/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Nudat3&lt;br /&gt;
| Easy-to-use nuclear chart with basic experimental information&lt;br /&gt;
| https://www.nndc.bnl.gov/nudat3/&lt;br /&gt;
|-&lt;br /&gt;
| NNDC&lt;br /&gt;
| Comprehensive resource for nuclear data&lt;br /&gt;
| https://www.nndc.bnl.gov/&lt;br /&gt;
|-&lt;br /&gt;
| Interactive nuclear chart&lt;br /&gt;
| Nuclear chart mainly useful for visualization&lt;br /&gt;
| https://people.physics.anu.edu.au/~ecs103/chart/&lt;br /&gt;
|-&lt;br /&gt;
| JAEA fission data&lt;br /&gt;
| Fission yield data&lt;br /&gt;
| https://wwwndc.jaea.go.jp/cgi-bin/FPYfig?iso=nPu240&amp;amp;typ=g3&amp;amp;mode=m&lt;br /&gt;
|-&lt;br /&gt;
| EXFOR&lt;br /&gt;
| Extensive compilation of experimental nuclear reaction data&lt;br /&gt;
| https://www-nds.iaea.org/exfor/exfor.htm&lt;br /&gt;
|-&lt;br /&gt;
| AMDC&lt;br /&gt;
| Atomic Mass Data Center&lt;br /&gt;
| https://www-nds.iaea.org/amdc/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Useful links ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Resource !! Type / Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| GDR RESeda&lt;br /&gt;
| French nuclear theory community network&lt;br /&gt;
| https://resanet.in2p3.fr/&lt;br /&gt;
|-&lt;br /&gt;
| ECT*&lt;br /&gt;
| European Centre for Theoretical Studies in Nuclear Physics and Related Areas (workshops, programs)&lt;br /&gt;
| https://www.ectstar.eu/&lt;br /&gt;
|-&lt;br /&gt;
| Institute for Nuclear Theory (INT)&lt;br /&gt;
| Theoretical nuclear physics institute, Seattle (workshops, programs, collaborations)&lt;br /&gt;
| https://www.int.washington.edu/&lt;br /&gt;
|-&lt;br /&gt;
| ESNT&lt;br /&gt;
| European School on Nuclear Theory (training programs, lectures, schools)&lt;br /&gt;
| https://esnt.cea.fr/index.php&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=27</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=27"/>
		<updated>2026-04-22T12:47:11Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: /* Purpose */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Formation Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | Contributing guidelines&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add content even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* Feel free to correct or improve any page  &lt;br /&gt;
* Clarity is more important than formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
* Explore the Nuclear Physics resources page if relevant  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=26</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=26"/>
		<updated>2026-04-22T12:46:27Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Formation Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Provide accessible introductions to the research topics in the lab  &lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | Contributing guidelines&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add content even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* Feel free to correct or improve any page  &lt;br /&gt;
* Clarity is more important than formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
* Explore the Nuclear Physics resources page if relevant  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Particle_physics_resources&amp;diff=25</id>
		<title>Particle physics resources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Particle_physics_resources&amp;diff=25"/>
		<updated>2026-04-22T12:45:41Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: Created page with &amp;quot;{{Contribute}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Contribute}}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Gravitational_waves_resources&amp;diff=24</id>
		<title>Gravitational waves resources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Gravitational_waves_resources&amp;diff=24"/>
		<updated>2026-04-22T12:45:14Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: Created page with &amp;quot;{{Contribute}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Contribute}}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Computing,_algorithms_and_data_resources&amp;diff=23</id>
		<title>Computing, algorithms and data resources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Computing,_algorithms_and_data_resources&amp;diff=23"/>
		<updated>2026-04-22T12:45:07Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: Created page with &amp;quot;{{Contribute}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Contribute}}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Template:Contribute&amp;diff=22</id>
		<title>Template:Contribute</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Template:Contribute&amp;diff=22"/>
		<updated>2026-04-22T12:44:35Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%; font-size:110%; border:4px solid #36c;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:10px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;📝 Contribute to this page&#039;&#039;&#039;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
This wiki is collaborative — feel free to improve, correct, or extend the content.  &lt;br /&gt;
Even small contributions are valuable.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Template:Contribute&amp;diff=21</id>
		<title>Template:Contribute</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Template:Contribute&amp;diff=21"/>
		<updated>2026-04-22T12:42:41Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%; font-size:110%; border-left:6px solid #36c;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:10px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This page is part of the L2iT wiki.&#039;&#039;&#039;&lt;br /&gt;
Feel free to improve, correct, or extend it — even small contributions are welcome.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=20</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=20"/>
		<updated>2026-04-22T12:41:34Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Contribute}}&lt;br /&gt;
&lt;br /&gt;
== Database ==&lt;br /&gt;
&lt;br /&gt;
This page gathers commonly used nuclear physics databases, both theoretical and experimental. &lt;br /&gt;
It is intended as a quick reference for accessing nuclear structure data, mass models, and reaction data.&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Amedee Gogny-HFB nuclear chart&lt;br /&gt;
| Microscopic nuclear chart based on Gogny–HFB calculations&lt;br /&gt;
| https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm&lt;br /&gt;
|-&lt;br /&gt;
| Skyrme mass tables&lt;br /&gt;
| Nuclear mass tables based on Skyrme energy density functionals&lt;br /&gt;
| https://massexplorer.frib.msu.edu/content/DFTMassTables.html&lt;br /&gt;
|-&lt;br /&gt;
| BRUSLIB&lt;br /&gt;
| Nuclear data library (masses, level densities, etc.) based on BSkG3 calculations&lt;br /&gt;
| https://www.astro.ulb.ac.be/bruslib/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Nudat3&lt;br /&gt;
| Easy-to-use nuclear chart with basic experimental information&lt;br /&gt;
| https://www.nndc.bnl.gov/nudat3/&lt;br /&gt;
|-&lt;br /&gt;
| NNDC&lt;br /&gt;
| Comprehensive resource for nuclear data&lt;br /&gt;
| https://www.nndc.bnl.gov/&lt;br /&gt;
|-&lt;br /&gt;
| Interactive nuclear chart&lt;br /&gt;
| Nuclear chart mainly useful for visualization&lt;br /&gt;
| https://people.physics.anu.edu.au/~ecs103/chart/&lt;br /&gt;
|-&lt;br /&gt;
| JAEA fission data&lt;br /&gt;
| Fission yield data&lt;br /&gt;
| https://wwwndc.jaea.go.jp/cgi-bin/FPYfig?iso=nPu240&amp;amp;typ=g3&amp;amp;mode=m&lt;br /&gt;
|-&lt;br /&gt;
| EXFOR&lt;br /&gt;
| Extensive compilation of experimental nuclear reaction data&lt;br /&gt;
| https://www-nds.iaea.org/exfor/exfor.htm&lt;br /&gt;
|-&lt;br /&gt;
| AMDC&lt;br /&gt;
| Atomic Mass Data Center&lt;br /&gt;
| https://www-nds.iaea.org/amdc/&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Template:Contribute&amp;diff=19</id>
		<title>Template:Contribute</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Template:Contribute&amp;diff=19"/>
		<updated>2026-04-22T12:41:10Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: Created page with &amp;quot;{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%; font-size:90%;&amp;quot; |- | style=&amp;quot;padding:6px;&amp;quot; | &amp;#039;&amp;#039;&amp;#039;This page is part of the L2iT wiki.&amp;#039;&amp;#039;&amp;#039; Feel free to improve, correct, or extend it — even small contributions are welcome. |}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%; font-size:90%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:6px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This page is part of the L2iT wiki.&#039;&#039;&#039;&lt;br /&gt;
Feel free to improve, correct, or extend it — even small contributions are welcome.&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=18</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=18"/>
		<updated>2026-04-22T12:40:22Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Provide accessible introductions to the research topics in the lab  &lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;text-align:left;&amp;quot; | Contributing guidelines&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add content even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* Feel free to correct or improve any page  &lt;br /&gt;
* Clarity is more important than formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
* Explore the Nuclear Physics resources page if relevant  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=17</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=17"/>
		<updated>2026-04-22T12:37:45Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Provide accessible introductions to the research topics in the lab  &lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;width:100%;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add content even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* Feel free to correct or improve any page  &lt;br /&gt;
* Clarity is more important than formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
* Explore the Nuclear Physics resources page if relevant  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=16</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=16"/>
		<updated>2026-04-22T12:33:10Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Provide accessible introductions to the research topics in the lab  &lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width:100%; border:2px solid #2a7fff; background-color:#f5faff;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add content even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* Feel free to correct or improve any page  &lt;br /&gt;
* Clarity is more important than formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data resources]] &lt;br /&gt;
* [[Gravitational waves resources]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics resources]] &lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
* Explore the Nuclear Physics resources page if relevant  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=15</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=15"/>
		<updated>2026-04-22T12:32:17Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki gathers resources, tutorials, and practical knowledge to help newcomers (students, postdocs, visitors) quickly become operational within the laboratory.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Provide accessible introductions to the research topics in the lab  &lt;br /&gt;
* Share useful resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Facilitate onboarding of new members  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width:100%; border:2px solid #2a7fff; background-color:#f5faff;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Add content even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* Feel free to correct or improve any page  &lt;br /&gt;
* Clarity is more important than formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[Computing, algorithms and data]] — &lt;br /&gt;
* [[Gravitational waves]] &lt;br /&gt;
* [[Nuclear_physics_ressources|Nuclear Physics resources]] &lt;br /&gt;
* [[Particle physics]] &lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — computing environment, scripts, and practical guides  &lt;br /&gt;
* [[Database]] — general data resources (cross-group)  &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab:&lt;br /&gt;
&lt;br /&gt;
* Start with your group page  &lt;br /&gt;
* Check the numerical tools page  &lt;br /&gt;
* Explore the Nuclear Physics resources page if relevant  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions make it useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=14</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=14"/>
		<updated>2026-04-22T12:28:17Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki is designed as a shared resource for members of the laboratory, in particular newcomers (students, postdocs, visitors). Its goal is to gather useful material, tutorials, and references related to research activities, numerical tools, and everyday scientific work within the lab.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Provide accessible introductions to the different research topics in the lab  &lt;br /&gt;
* Share practical resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Help newcomers become quickly operational  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;width:100%; border:2px solid #2a7fff; background-color:#f5faff; padding:10px;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;padding:12px;&amp;quot; |&lt;br /&gt;
&#039;&#039;&#039;This wiki is a collective tool — everyone is encouraged to contribute.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Do not hesitate to add content, even if it is incomplete  &lt;br /&gt;
* Small contributions are valuable  &lt;br /&gt;
* You are encouraged to correct and improve existing pages  &lt;br /&gt;
* Clarity matters more than perfect formatting  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;You cannot “break” the wiki: everything can be edited, corrected, or reverted.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[CAD]] — (to be completed)&lt;br /&gt;
* [[OG]] — (to be completed)&lt;br /&gt;
* [[NP]] — Nuclear Physics&lt;br /&gt;
* [[PP]] — (to be completed)&lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — Training material, software, and practical guides  &lt;br /&gt;
* [[Database]] — Nuclear physics databases and data resources  &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab, you may want to:&lt;br /&gt;
* Browse your group’s page  &lt;br /&gt;
* Check the available numerical tools and tutorials  &lt;br /&gt;
* Explore the database page for useful references  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions help make it more useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=13</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Main_Page&amp;diff=13"/>
		<updated>2026-04-22T12:26:57Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= L2iT Wiki =&lt;br /&gt;
&lt;br /&gt;
Welcome to the L2iT internal wiki.&lt;br /&gt;
&lt;br /&gt;
This wiki is designed as a shared resource for members of the laboratory, in particular newcomers (students, postdocs, visitors). Its goal is to gather useful material, tutorials, and references related to research activities, numerical tools, and everyday scientific work within the lab.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
* Provide accessible introductions to the different research topics in the lab  &lt;br /&gt;
* Share practical resources (databases, codes, tutorials, workflows)  &lt;br /&gt;
* Help newcomers become quickly operational  &lt;br /&gt;
* Preserve and transmit knowledge within the group  &lt;br /&gt;
&lt;br /&gt;
== Contributing ==&lt;br /&gt;
&lt;br /&gt;
This wiki is a **collective tool** and relies on contributions from all members.&lt;br /&gt;
&lt;br /&gt;
* Do not hesitate to add new content, even if it is incomplete  &lt;br /&gt;
* Small contributions are as valuable as large ones  &lt;br /&gt;
* You can correct, improve, or update any page  &lt;br /&gt;
* There is no need for perfect formatting — clarity is the priority  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;If something is missing or unclear, it is probably worth adding.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== Research Groups ==&lt;br /&gt;
&lt;br /&gt;
* [[CAD]] — (to be completed)&lt;br /&gt;
* [[OG]] — (to be completed)&lt;br /&gt;
* [[NP]] — Nuclear Physics&lt;br /&gt;
* [[PP]] — (to be completed)&lt;br /&gt;
&lt;br /&gt;
== Resources and Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* [[Numerical tools]] — Training material, software, and practical guides  &lt;br /&gt;
* [[Database]] — Nuclear physics databases and data resources  &lt;br /&gt;
&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
If you are new to the lab, you may want to:&lt;br /&gt;
* Browse your group’s page  &lt;br /&gt;
* Check the available numerical tools and tutorials  &lt;br /&gt;
* Explore the database page for useful references  &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;This wiki evolves continuously — your contributions help make it more useful for everyone.&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=12</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=12"/>
		<updated>2026-04-22T12:15:46Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Database ==&lt;br /&gt;
&lt;br /&gt;
This page gathers commonly used nuclear physics databases, both theoretical and experimental. &lt;br /&gt;
It is intended as a quick reference for accessing nuclear structure data, mass models, and reaction data.&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Amedee Gogny-HFB nuclear chart&lt;br /&gt;
| Microscopic nuclear chart based on Gogny–HFB calculations&lt;br /&gt;
| https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm&lt;br /&gt;
|-&lt;br /&gt;
| Skyrme mass tables&lt;br /&gt;
| Nuclear mass tables based on Skyrme energy density functionals&lt;br /&gt;
| https://massexplorer.frib.msu.edu/content/DFTMassTables.html&lt;br /&gt;
|-&lt;br /&gt;
| BRUSLIB&lt;br /&gt;
| Nuclear data library (masses, level densities, etc.) based on BSkG3 calculations&lt;br /&gt;
| https://www.astro.ulb.ac.be/bruslib/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Nudat3&lt;br /&gt;
| Easy-to-use nuclear chart with basic experimental information&lt;br /&gt;
| https://www.nndc.bnl.gov/nudat3/&lt;br /&gt;
|-&lt;br /&gt;
| NNDC&lt;br /&gt;
| Comprehensive resource for nuclear data&lt;br /&gt;
| https://www.nndc.bnl.gov/&lt;br /&gt;
|-&lt;br /&gt;
| Interactive nuclear chart&lt;br /&gt;
| Nuclear chart mainly useful for visualization&lt;br /&gt;
| https://people.physics.anu.edu.au/~ecs103/chart/&lt;br /&gt;
|-&lt;br /&gt;
| JAEA fission data&lt;br /&gt;
| Fission yield data&lt;br /&gt;
| https://wwwndc.jaea.go.jp/cgi-bin/FPYfig?iso=nPu240&amp;amp;typ=g3&amp;amp;mode=m&lt;br /&gt;
|-&lt;br /&gt;
| EXFOR&lt;br /&gt;
| Extensive compilation of experimental nuclear reaction data&lt;br /&gt;
| https://www-nds.iaea.org/exfor/exfor.htm&lt;br /&gt;
|-&lt;br /&gt;
| AMDC&lt;br /&gt;
| Atomic Mass Data Center&lt;br /&gt;
| https://www-nds.iaea.org/amdc/&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=11</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=11"/>
		<updated>2026-04-22T12:14:13Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Database ==&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Amedee Gogny-HFB nuclear chart&lt;br /&gt;
| Microscopic nuclear chart based on Gogny-HFB calculations&lt;br /&gt;
| https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm&lt;br /&gt;
|-&lt;br /&gt;
| Skyrme mass tables&lt;br /&gt;
| Nuclear mass tables based on Skyrme energy density functionals&lt;br /&gt;
| https://massexplorer.frib.msu.edu/content/DFTMassTables.html&lt;br /&gt;
|-&lt;br /&gt;
|BRUSLIB&lt;br /&gt;
|nuclear data library, mass, nuclear level density, etc.. obtained by BSkG3 &lt;br /&gt;
|https://www.astro.ulb.ac.be/bruslib/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Nudat3&lt;br /&gt;
| Easy-to-use nuclear chart with basic experimental information&lt;br /&gt;
| https://www.nndc.bnl.gov/nudat3/&lt;br /&gt;
|-&lt;br /&gt;
|NNDC&lt;br /&gt;
|worldwide resource for nuclear data&lt;br /&gt;
|https://www.nndc.bnl.gov/&lt;br /&gt;
|-&lt;br /&gt;
|interactive nuclear chart&lt;br /&gt;
|Nuclear chart, mostly useful for visualization&lt;br /&gt;
|https://people.physics.anu.edu.au/%7Eecs103/chart/&lt;br /&gt;
|-&lt;br /&gt;
|JAEA fission data&lt;br /&gt;
|Fission yield data&lt;br /&gt;
|https://wwwndc.jaea.go.jp/cgi-bin/FPYfig?iso=nPu240&amp;amp;typ=g3&amp;amp;mode=m&lt;br /&gt;
|-&lt;br /&gt;
|EXFOR&lt;br /&gt;
|extensive compilation of experimental nuclear reaction data&lt;br /&gt;
|https://www-nds.iaea.org/exfor/exfor.htm&lt;br /&gt;
|-&lt;br /&gt;
| AMDC&lt;br /&gt;
|Atomic Mass Data Center&lt;br /&gt;
|https://www-nds.iaea.org/amdc/&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=10</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=10"/>
		<updated>2026-04-22T11:53:22Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Database ==&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Amedee Gogny-HFB nuclear chart&lt;br /&gt;
| Microscopic nuclear chart based on Gogny-HFB calculations&lt;br /&gt;
| https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm&lt;br /&gt;
|-&lt;br /&gt;
| Skyrme mass tables&lt;br /&gt;
| Nuclear mass tables based on Skyrme energy density functionals&lt;br /&gt;
| https://massexplorer.frib.msu.edu/content/DFTMassTables.html&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Nudat3&lt;br /&gt;
| Easy-to-use nuclear chart with basic experimental information&lt;br /&gt;
| https://www.nndc.bnl.gov/nudat3/&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=9</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=9"/>
		<updated>2026-04-22T11:51:57Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Database ==&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Amedee Gogny-HFB nuclear chart&lt;br /&gt;
| Microscopic nuclear chart based on Gogny-HFB calculations&lt;br /&gt;
| https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm&lt;br /&gt;
|-&lt;br /&gt;
| Skyrme mass tables&lt;br /&gt;
| Nuclear mass tables based on Skyrme energy density functionals&lt;br /&gt;
| https://massexplorer.frib.msu.edu/content/DFTMassTables.html&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Nudat3&lt;br /&gt;
| Easy-to-use nuclear chart with basic experimental information&lt;br /&gt;
| https://www.nndc.bnl.gov/nudat3/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Nudat3&#039;&#039;&#039; — easy-to-use nuclear chart with basic experimental information  &lt;br /&gt;
  https://www.nndc.bnl.gov/nudat3/&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=8</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=8"/>
		<updated>2026-04-22T11:51:28Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: /* Theory */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Database ==&lt;br /&gt;
&lt;br /&gt;
== Database ==&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Amedee Gogny-HFB nuclear chart&lt;br /&gt;
| Microscopic nuclear chart based on Gogny-HFB calculations&lt;br /&gt;
| https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm&lt;br /&gt;
|-&lt;br /&gt;
| Skyrme mass tables&lt;br /&gt;
| Nuclear mass tables based on Skyrme energy density functionals&lt;br /&gt;
| https://massexplorer.frib.msu.edu/content/DFTMassTables.html&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Database !! Description !! Link&lt;br /&gt;
|-&lt;br /&gt;
| Nudat3&lt;br /&gt;
| Easy-to-use nuclear chart with basic experimental information&lt;br /&gt;
| https://www.nndc.bnl.gov/nudat3/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Nudat3&#039;&#039;&#039; — easy-to-use nuclear chart with basic experimental information  &lt;br /&gt;
  https://www.nndc.bnl.gov/nudat3/&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=7</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=7"/>
		<updated>2026-04-22T11:50:32Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Database ==&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
* Amedee Gogny-HFB nuclear chart  &lt;br /&gt;
  https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm&lt;br /&gt;
&lt;br /&gt;
* Skyrme mass tables  &lt;br /&gt;
  https://massexplorer.frib.msu.edu/content/DFTMassTables.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Experiment ===&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;Nudat3&#039;&#039;&#039; — easy-to-use nuclear chart with basic experimental information  &lt;br /&gt;
  https://www.nndc.bnl.gov/nudat3/&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=6</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=6"/>
		<updated>2026-04-22T11:48:37Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Database ==&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Amedee Gogny-HFB nuclear chart [https://www-phynu.cea.fr/science\_en\_ligne/carte\_potentiels\_microscopiques/carte\_potentiel\_nucleaire.htm](https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm)&lt;br /&gt;
-  &lt;br /&gt;
&lt;br /&gt;
[Skyrme mass table *https://massexplorer.frib.msu.edu/content/DFTMassTables.html*](https://massexplorer.frib.msu.edu/content/DFTMassTables.html)&lt;br /&gt;
{.links-list}&lt;br /&gt;
&lt;br /&gt;
### Experiment&lt;br /&gt;
&lt;br /&gt;
-   **Nudat3** easy-to-use nuclear chart with basic experimental information : [https://www.nndc.bnl.gov/nudat3/](https://www.nndc.bnl.gov/nudat3/)&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics&amp;diff=5</id>
		<title>Nuclear physics</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics&amp;diff=5"/>
		<updated>2026-04-17T09:38:09Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: Gscamps moved page Nuclear physics to Nuclear physics ressources&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Nuclear physics ressources]]&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=4</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=4"/>
		<updated>2026-04-17T09:38:09Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: Gscamps moved page Nuclear physics to Nuclear physics ressources&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Database ==&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Amedee Gogny-HFB nuclear chart [https://www-phynu.cea.fr/science\_en\_ligne/carte\_potentiels\_microscopiques/carte\_potentiel\_nucleaire.htm](https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm)&lt;br /&gt;
-   [Skyrme mass table *https://massexplorer.frib.msu.edu/content/DFTMassTables.html*](https://massexplorer.frib.msu.edu/content/DFTMassTables.html)&lt;br /&gt;
{.links-list}&lt;br /&gt;
&lt;br /&gt;
### Experiment&lt;br /&gt;
&lt;br /&gt;
-   **Nudat3** easy-to-use nuclear chart with basic experimental information : [https://www.nndc.bnl.gov/nudat3/](https://www.nndc.bnl.gov/nudat3/)&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=3</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=3"/>
		<updated>2026-04-17T09:31:55Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: test page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Database ==&lt;br /&gt;
&lt;br /&gt;
=== Theory ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Amedee Gogny-HFB nuclear chart [https://www-phynu.cea.fr/science\_en\_ligne/carte\_potentiels\_microscopiques/carte\_potentiel\_nucleaire.htm](https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm)&lt;br /&gt;
-   [Skyrme mass table *https://massexplorer.frib.msu.edu/content/DFTMassTables.html*](https://massexplorer.frib.msu.edu/content/DFTMassTables.html)&lt;br /&gt;
{.links-list}&lt;br /&gt;
&lt;br /&gt;
### Experiment&lt;br /&gt;
&lt;br /&gt;
-   **Nudat3** easy-to-use nuclear chart with basic experimental information : [https://www.nndc.bnl.gov/nudat3/](https://www.nndc.bnl.gov/nudat3/)&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
	<entry>
		<id>https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=2</id>
		<title>Nuclear physics ressources</title>
		<link rel="alternate" type="text/html" href="https://ccl2it-formation.in2p3.fr/index.php?title=Nuclear_physics_ressources&amp;diff=2"/>
		<updated>2026-04-17T06:41:02Z</updated>

		<summary type="html">&lt;p&gt;Gscamps: Created page with &amp;quot;# Nuclear physics  ## Database  ### Theory  -   **Amedee** Gogny-HFB nuclear chart [https://www-phynu.cea.fr/science\_en\_ligne/carte\_potentiels\_microscopiques/carte\_potentiel\_nucleaire.htm](https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm) -   [Skyrme mass table *https://massexplorer.frib.msu.edu/content/DFTMassTables.html*](https://massexplorer.frib.msu.edu/content/DFTMassTables.html) {.links-list}  ### Experi...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# Nuclear physics&lt;br /&gt;
&lt;br /&gt;
## Database&lt;br /&gt;
&lt;br /&gt;
### Theory&lt;br /&gt;
&lt;br /&gt;
-   **Amedee** Gogny-HFB nuclear chart [https://www-phynu.cea.fr/science\_en\_ligne/carte\_potentiels\_microscopiques/carte\_potentiel\_nucleaire.htm](https://www-phynu.cea.fr/science_en_ligne/carte_potentiels_microscopiques/carte_potentiel_nucleaire.htm)&lt;br /&gt;
-   [Skyrme mass table *https://massexplorer.frib.msu.edu/content/DFTMassTables.html*](https://massexplorer.frib.msu.edu/content/DFTMassTables.html)&lt;br /&gt;
{.links-list}&lt;br /&gt;
&lt;br /&gt;
### Experiment&lt;br /&gt;
&lt;br /&gt;
-   **Nudat3** easy-to-use nuclear chart with basic experimental information : [https://www.nndc.bnl.gov/nudat3/](https://www.nndc.bnl.gov/nudat3/)&lt;/div&gt;</summary>
		<author><name>Gscamps</name></author>
	</entry>
</feed>