diff --git a/.flake8 b/.flake8
index f295e07..ad8b7ad 100644
--- a/.flake8
+++ b/.flake8
@@ -1,3 +1,3 @@
[flake8]
max-line-length = 88
-extend-ignore = E203, E704
+extend-ignore = E203, E704, E501
diff --git a/annual-reports/src/api.py b/annual-reports/src/api.py
index aec3124..1d6cf68 100644
--- a/annual-reports/src/api.py
+++ b/annual-reports/src/api.py
@@ -1,6 +1,6 @@
import datetime
import os
-import re
+import xml.etree.ElementTree as ET
import backoff
import requests
@@ -9,15 +9,8 @@
from sqlalchemy import create_engine
from sqlalchemy.orm import Session
-# noqa: E501
-PUBLICATIONS_PER_YEAR = "https://cds.cern.ch/search?p=(980:ARTICLE+or+980:BOOK+or+980:PROCEEDINGS+or+690:'YELLOW+REPORT'+or+980:REPORT)+and+year:{year}+and+(affiliation:CERN+or+260:CERN+or+595:'For+annual+report')+not+595:'Not+for+annual+report'&of=xm&rg=1" # noqa: E501
-JOURNALS_PER_YEAR = "https://cds.cern.ch/search?ln=en&cc=Published+Articles&p=(affiliation:CERN+or+595:'For+annual+report')+and+year:{year}+not+980:ConferencePaper+not+980:BookChapter+not+595:'Not+for+annual+report'&action_search=Search&op1=a&m1=a&p1=&f1=&c=Published+Articles&c=&sf=&so=d&rm=&rg=2000&sc=0&of=tb&ot=773__p" # noqa: E501
-PUBLISHED_ARTICLES_PER_YEAR = "https://cds.cern.ch/search?ln=en&cc=Published+Articles&p=%28affiliation%3ACERN+or+595%3A%27For+annual+report%27%29+and+year%3A{year}+not+980%3AConferencePaper+not+980%3ABookChapter+not+595%3A%27Not+for+annual+report%27&action_search=Search&op1=a&m1=a&p1=&f1=&c=Published+Articles&c=&sf=&so=d&rm=&rg=1&sc=0&of=xm" # noqa: E501
-CONTRIBUTIONS_TO_CONFERENCE_PROCEEDINGS_PER_YEAR = "https://cds.cern.ch/search?wl=0&ln=en&cc=Published+Articles&p=980%3AARTICLE+and+%28affiliation%3ACERN+or+595%3A%27For+annual+report%27%29+and+year%3A{year}+and+980%3AConferencePaper+not+595%3A%27Not+for+annual+report%27&f=&action_search=Search&c=Published+Articles&c=&sf=author&so=a&rm=&rg=1&sc=1&of=xm" # noqa: E501
-REPORTS_BOOKS_AND_BOOK_CHAPTERS_PER_YEAR = "https://cds.cern.ch/search?ln=en&p=affiliation%3ACERN+or+260%3ACERN+and+260%3A{year}++and+%28980%3ABOOK+or+980%3APROCEEDINGS+or+690%3A%27YELLOW+REPORT%27+or+980%3ABookChapter+or+980%3AREPORT%29+not+595%3A%27Not+for+annual+report%27&action_search=Search&op1=a&m1=a&p1=&f1=&c=Articles+%26+Preprints&c=Books+%26+Proceedings&sf=&so=d&rm=&rg=1&sc=1&of=xm" # noqa: E501
-THESES_PER_YEAR = "https://cds.cern.ch/search?wl=0&ln=en&cc=CERN+Theses&p=502%3A%27{year}%27+and+502%3Aphd&f=&action_search=Search&c=CERN+Theses&c=&sf=&so=d&rm=&rg=1&sc=1&of=xm" # noqa: E501,E261
-SUBJECT_CATEGORIES_PER_YEAR = "https://cds.cern.ch/search?ln=en&cc=Published+Articles&p=(affiliation:CERN+or+595:'For+annual+report')+and+year:{year}+not+980:ConferencePaper+not+980:BookChapter+not+595:'Not+for+annual+report'&action_search=Search&op1=a&m1=a&p1=&f1=&c=Published+Articles&c=&sf=&so=d&rm=&rg=2000&sc=0&of=tb&ot=65017" # noqa: E501
-
+PUBLICATIONS = "https://cds.cern.ch/tools/custom_query_summary.py?start={year}&end={year}&apikey={cds_token}&refresh=1&repeated_values=0"
+SUBJECTS = PUBLICATIONS + "&otag=65017a"
LOGGING = structlog.get_logger("Annual_Report_API")
@@ -30,147 +23,6 @@ def _backoff_handler(details):
)
-def get_number_of_records(url):
- # Get the response from the URL
- response = requests.get(url)
- # Raise exception if HTTP error
- response.raise_for_status()
- match = re.search(r"Search-Engine-Total-Number-Of-Results: (\d+)", response.text)
- # Return the number of records
- if match:
- return int(match.group(1))
- return None
-
-
-@backoff.on_exception(
- backoff.expo,
- requests.exceptions.RequestException,
- max_tries=5,
- on_backoff=_backoff_handler,
-)
-def get_publications_per_year(year):
- """
- Get the number of publications for each publication type for a given year.
-
- Parameters
- ----------
- year : int
- The year to get the number of publications for.
-
- Returns
- -------
- dict
- The number of publications for each publication type for the given year.
- """
- publications_per_year = get_number_of_records(
- PUBLICATIONS_PER_YEAR.format(year=year)
- )
- published_articles_per_year = get_number_of_records(
- PUBLISHED_ARTICLES_PER_YEAR.format(year=year)
- )
- contributions_to_conference_proceedings_per_year = get_number_of_records(
- CONTRIBUTIONS_TO_CONFERENCE_PROCEEDINGS_PER_YEAR.format(year=year)
- )
- reports_books_and_book_chapters_per_year = get_number_of_records(
- REPORTS_BOOKS_AND_BOOK_CHAPTERS_PER_YEAR.format(year=year)
- )
- theses_per_year = get_number_of_records(THESES_PER_YEAR.format(year=year))
-
- return {
- "publications": publications_per_year,
- "published_articles": published_articles_per_year,
- "contributions_to_conference_proceedings": contributions_to_conference_proceedings_per_year, # noqa: E501,E261
- "reports_books_and_book_chapters": reports_books_and_book_chapters_per_year,
- "theses": theses_per_year,
- }
-
-
-@backoff.on_exception(
- backoff.expo,
- requests.exceptions.RequestException,
- max_tries=5,
- on_backoff=_backoff_handler,
-)
-def get_journals_per_year(year):
- """
- Get the number of publications for each journal for a given year.
-
- Parameters
- ----------
- year : int
- The year to get the number of publications for.
-
- Returns
- -------
- dict
- The number of publications for each journal for the given year.
- """
- url = JOURNALS_PER_YEAR.format(year=year)
-
- response = requests.get(url)
-
- response.raise_for_status()
- journals = response.text.split("\n")
-
- journal_to_count = {}
- for journal in journals:
- journal_name = journal
- if journal_name in journal_to_count:
- journal_to_count[journal_name] += 1
- else:
- if journal_name:
- journal_to_count[journal_name] = 1
- return journal_to_count
-
-
-@backoff.on_exception(
- backoff.expo,
- requests.exceptions.RequestException,
- max_tries=5,
- on_backoff=_backoff_handler,
-)
-def get_subject_categories_per_year(year):
- """
- Get the number of publications for each subject category for a given year.
-
- Parameters
- ----------
- year : int
- The year to get the number of categories for.
-
- Returns
- -------
- dict
- The number of categories for the given year.
- """
-
- url = SUBJECT_CATEGORIES_PER_YEAR.format(year=year)
-
- response = requests.get(url)
- response.raise_for_status()
-
- categories = response.text.split("\n")
-
- categories_to_count = {}
-
- for category in categories:
- if "SzGeCERN" not in category:
- continue
-
- try:
- category_name = category.split("$$a")[1].split("$$")[0]
- except IndexError:
- # Skip this category since it's malformed
- continue
-
- if category_name in categories_to_count:
- categories_to_count[category_name] += 1
- else:
- categories_to_count[category_name] = 1
-
- return categories_to_count
-
-
class AnnualReportsAPI:
def __init__(
self,
@@ -180,12 +32,14 @@ def __init__(
db_name: str = "",
db_port: str = "",
years: list = None,
+ cds_token: str = "",
) -> None:
self.db_user = db_user or os.environ.get("DB_USER")
self.db_password = db_password or os.environ.get("DB_PASSWORD")
self.db_host = db_host or os.environ.get("DB_HOST")
self.db_name = db_name or os.environ.get("MATOMO_DB_NAME")
self.db_port = db_port or os.environ.get("DB_PORT")
+ self.cds_token = cds_token or os.environ.get("CDS_TOKEN")
if not all(
[
self.db_user,
@@ -193,6 +47,7 @@ def __init__(
self.db_host,
self.db_name,
self.db_port,
+ self.cds_token,
]
):
raise ValueError("All the required attributes must be passed!")
@@ -206,18 +61,84 @@ def __init__(
def create_tables(self):
Base.metadata.create_all(self.engine, checkfirst=True)
- def get_categories(self):
+ def drop_tables(self):
+ Base.metadata.drop_all(self.engine, checkfirst=True)
+
+ @backoff.on_exception(
+ backoff.expo,
+ requests.exceptions.RequestException,
+ max_tries=5,
+ on_backoff=_backoff_handler,
+ )
+ def request_publications_from_cds(self, year):
+ url = PUBLICATIONS.format(year=year, cds_token=self.cds_token)
+ response = requests.get(url)
+ response.raise_for_status()
+ root = ET.fromstring(response.content)
+ return root
+
+ @backoff.on_exception(
+ backoff.expo,
+ requests.exceptions.RequestException,
+ max_tries=5,
+ on_backoff=_backoff_handler,
+ )
+ def request_subjects_from_cds(self, year):
+ url = SUBJECTS.format(year=year, cds_token=self.cds_token)
+ response = requests.get(url)
+ response.raise_for_status()
+ root = ET.fromstring(response.content)
+ return root
+
+ def get_publications_by_year(self, year):
+ """
+ Get the number of publications for a given year.
+
+ Parameters
+ ----------
+ year : int
+ The year to get the number of publications for.
+
+ Returns
+ -------
+ int
+ The number of publications for the given year.
+ """
+ root = self.request_publications_from_cds(year)
+ yearly_report = root.find("yearly_report")
+ publication_report_count = yearly_report.attrib
+ del publication_report_count["year"]
+ journals = {}
+ for journal in yearly_report.findall("line"):
+ name = journal.find("result").text
+ if "TOTAL" in name:
+ continue
+ journals[name] = journal.find("nb").text
+ return publication_report_count, journals
+
+ def get_subjects_by_year(self, year):
+ root = self.request_subjects_from_cds(year)
+ yearly_report = root.find("yearly_report")
+ subjects = {}
+ for subject in yearly_report.findall("line"):
+ name = subject.find("result").text
+ if "TOTAL" in name:
+ continue
+ subjects[name] = subject.find("nb").text
+ return subjects
+
+ def get_subjects(self):
for year in self.years:
year = int(year)
LOGGING.info("Getting categories", year=year)
- results = get_subject_categories_per_year(year)
+ results = self.get_subjects_by_year(year)
year_to_date = datetime.date(year, 1, 1)
with Session(self.engine) as session:
try:
LOGGING.info("Deleting categories", year=year)
session.query(Categories).filter_by(year=year_to_date).delete()
records = [
- Categories(year=year_to_date, category=key, count=value)
+ Categories(year=year_to_date, category=key, count=int(value))
for key, value in results.items()
]
LOGGING.info(
@@ -231,22 +152,35 @@ def get_categories(self):
else:
LOGGING.info("Populate categories success")
- def get_journals(self):
+ def get_publications(self):
for year in self.years:
year = int(year)
- LOGGING.info("Getting journals", year=year)
- results = get_journals_per_year(year)
+ LOGGING.info("Getting publications", year=year)
+ publications, journals = self.get_publications_by_year(year)
year_to_date = datetime.date(year, 1, 1)
+ with Session(self.engine) as session:
+ try:
+ LOGGING.info("Deleting publications", year=year)
+ session.query(Publications).filter_by(year=year_to_date).delete()
+ LOGGING.info("Populate publications", publications=publications)
+ records = Publications(year=year_to_date, **publications)
+ session.add(records)
+ session.commit()
+ except Exception as e:
+ print("ERROR: " + str(e))
+ LOGGING.exception("Populate publications")
+ else:
+ LOGGING.info("Populate publications success")
with Session(self.engine) as session:
try:
LOGGING.info("Deleting journals", year=year)
session.query(Journals).filter_by(year=year_to_date).delete()
records = [
- Journals(year=year_to_date, journal=key, count=value)
- for key, value in results.items()
+ Journals(year=year_to_date, journal=key, count=int(value))
+ for key, value in journals.items()
]
LOGGING.info(
- "Populate journals", count=len(records), journals=results
+ "Populate journals", count=len(records), journals=journals
)
session.add_all(records)
session.commit()
@@ -254,23 +188,3 @@ def get_journals(self):
LOGGING.exception("Populate journals")
else:
LOGGING.info("Populate journals success")
-
- def get_publications(self):
- for year in self.years:
- year = int(year)
- LOGGING.info("Getting publications", year=year)
- results = get_publications_per_year(year)
- year_to_date = datetime.date(year, 1, 1)
- with Session(self.engine) as session:
- try:
- LOGGING.info("Deleting publications", year=year)
- session.query(Publications).filter_by(year=year_to_date).delete()
- LOGGING.info("Populate publications", publications=results)
- records = Publications(year=year_to_date, **results)
- session.add(records)
- session.commit()
- except Exception as e:
- print("ERROR: " + str(e))
- LOGGING.exception("Populate publications")
- else:
- LOGGING.info("Populate publications success")
diff --git a/annual-reports/src/cli.py b/annual-reports/src/cli.py
index fe7424f..8f46b8d 100644
--- a/annual-reports/src/cli.py
+++ b/annual-reports/src/cli.py
@@ -10,11 +10,8 @@ def fetch_annual_reports(years):
click.echo("Create tables if missing")
annual_reports.create_tables()
- click.echo("Fetching categories")
- annual_reports.get_categories()
-
- click.echo("Fetching journals")
- annual_reports.get_journals()
+ click.echo("Fetching subjects")
+ annual_reports.get_subjects()
click.echo("Fetching publications")
annual_reports.get_publications()
diff --git a/annual-reports/src/models.py b/annual-reports/src/models.py
index 3204ac7..43e9123 100644
--- a/annual-reports/src/models.py
+++ b/annual-reports/src/models.py
@@ -9,10 +9,10 @@ class Publications(Base):
id = Column(Integer, primary_key=True)
publications = Column(Integer, nullable=False)
- published_articles = Column(Integer, nullable=False)
- contributions_to_conference_proceedings = Column(Integer, nullable=False)
- reports_books_and_book_chapters = Column(Integer, nullable=False)
+ journals = Column(Integer, nullable=False)
+ contributions = Column(Integer, nullable=False)
theses = Column(Integer, nullable=False)
+ rest = Column(Integer, nullable=False)
year = Column(Date, nullable=False)
diff --git a/annual-reports/tests/cassettes/TestAPI.test_categories.yaml b/annual-reports/tests/cassettes/TestAPI.test_categories.yaml
deleted file mode 100644
index 06396cc..0000000
--- a/annual-reports/tests/cassettes/TestAPI.test_categories.yaml
+++ /dev/null
@@ -1,83 +0,0 @@
-interactions:
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python-requests/2.31.0
- method: GET
- uri: https://cds.cern.ch/search?ln=en&cc=Published+Articles&p=(affiliation:CERN+or+595:'For+annual+report')+and+year:2022+not+980:ConferencePaper+not+980:BookChapter+not+595:'Not+for+annual+report'&action_search=Search&op1=a&m1=a&p1=&f1=&c=Published+Articles&c=&sf=&so=d&rm=&rg=2000&sc=0&of=tb&ot=65017
- response:
- body:
- string: !!binary |
- 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
- headers:
- Access-Control-Allow-Origin:
- - '*'
- Cache-Control:
- - public, max-age=3600, no-cache="set-cookie"
- Connection:
- - Keep-Alive
- Content-Encoding:
- - gzip
- Content-Length:
- - '2044'
- Content-Type:
- - text/plain; charset=utf-8
- Date:
- - Fri, 27 Oct 2023 10:00:56 GMT
- Keep-Alive:
- - timeout=15, max=100
- Server:
- - Apache
- Set-Cookie:
- - INVENIOSESSIONstub=NO; path=/; HttpOnly
- - INVENIOSESSION=59bf15054e31b9da5fc59b7266740c8c; path=/; HttpOnly
- Vary:
- - ETag,Cache-Control,Accept-Encoding
- Via:
- - 1.1 cds.cern.ch
- status:
- code: 200
- message: OK
-version: 1
diff --git a/annual-reports/tests/cassettes/TestAPI.test_journals.yaml b/annual-reports/tests/cassettes/TestAPI.test_journals.yaml
index 390957c..3ad663d 100644
--- a/annual-reports/tests/cassettes/TestAPI.test_journals.yaml
+++ b/annual-reports/tests/cassettes/TestAPI.test_journals.yaml
@@ -11,55 +11,421 @@ interactions:
User-Agent:
- python-requests/2.31.0
method: GET
- uri: https://cds.cern.ch/search?ln=en&cc=Published+Articles&p=(affiliation:CERN+or+595:'For+annual+report')+and+year:2022+not+980:ConferencePaper+not+980:BookChapter+not+595:'Not+for+annual+report'&action_search=Search&op1=a&m1=a&p1=&f1=&c=Published+Articles&c=&sf=&so=d&rm=&rg=2000&sc=0&of=tb&ot=773__p
+ uri: https://cds.cern.ch/tools/custom_query_summary.py?end=2022&refresh=1&repeated_values=0&start=2022
response:
body:
- string: !!binary |
- H4sIAAAAAAAAA6VWy5biNhDd6yv0AWl/QHbGmIw5wDiYk6zVshrrxJaIHnD89yk9jBENM/RkBZJL
- Vbeqbl1pXTUHUqOqLEt8UEToDOenU5/hxp6YolK0GTp0DG+Z1kwcmULVKi/eagJf9Xex4YKhlTVW
- gQmnSr5z2cvjiFZKCsPBBnMBh1tOneU6w3vSgkmGayVNhsr1brutcN2NmlONdsR7Kjo2QFgH5ySV
- cS5qqaTV3hMJaHNKARPaEsMUJ71GpThziArQKc/wgdFOQKAkNQgOkXuiB+JcBVNUlHmDmxOhDK+z
- yc3AhNHJ4Zoo0vesx0uujeLvcHrUJgZwf9mgnQNI0ifgs/JLwNhluBKthYMjqsQZCsNcCcBJNZAj
- F0dUd9IA+mdpFB0X0SUuUC37cQAnPpgcTtZMffOxUGlVhldcEEHdliDHDCp1FMzIb2OrZDuKVyoT
- wpWtpRnKzSB1mlr43BjomsaN7HnL8QLlxTZ4JdRwKTSW0D7Fz4SOmIgWN4xaxc2IJuAxKTkMFlAV
- Ckrp+nn9k1NDsO+zKwMbnL37nS2aC9dQe2mVID2WH/gPJjXlTABFHjj05JyS2Mt3aTz5LO1dl6BH
- FlLcMtPJVkd0e6az33COptU58wSEAwtGhpQooV6+7xT6vmFEieDBbVbCMJgjKMO/NgBcEOM47KBC
- RULktJ11R9QA/LQe6ApmQtNOXRn2rUwnOPbRt/ALWQHBoSrhwIYZoHbenoFBrMXXKfPw1QdxuLfL
- eh7dZOER3ZRqicp6c7tRoJDe95PJXhqyqAw5bLohWVe75oDyqsYAEZZFXiOXDN5JwzTO8yYGaCYW
- rKeKXqcywMnDrISFM0IxRoh18taxfJ8k4U9LhLEDLgXMl1M2YqKy4aXUHERsYXuIubfahaIkDtYE
- wmeR1CmICRNaKi8mlSPqOp4CYmVoxaEODflgZnQGkctBMm+F8YeSfiNyMDCxSL9jP+OnjinX3Vvy
- XrXIzcsIa0ld85iYdCJqV70OVlfC3VW37q2OigjTHFHHFBb8iJfEEBTTT7Jxd1Bkl58vYqS6rdzC
- ef2L0DvZhHbO1I1sBrlwJnt2mjoQ6Cqbp9P90hB5L4m0PCjH3IM7ffdB/dbVNoB71oeENmE80Fa2
- DnTDBws/npWTyDbyw1xCkX3LEqBxnDxLJhpX2l3QzyoS9r1KQO1vrMooxv7OB279zdg//fjUz6cR
- eBAlKsb0eIDbrJ9kKhDox86DZbDZscv8yogXzqO0I6xDKmPPsJWfY9x89cKfZJK27ufcWiDwiSfJ
- es4hsNjwY2cu5Mzm3ST0TP2EAK81YFb1qfFOv+Nd0YzDwNzzplZkgB7htxnxbSN+kumKXd4W8D6J
- un+n4k9Tv1W7EMez/Kn9XIfXZ/sly1Tvii+c9JbXe+klYiTvkdCGB3o7X2RuK5j5YPdY/9cL6Nfg
- /kJNQ04pL+IDxr977h5jPaPuPsdLdubO1L90l8xEHQ2vrUf18HHSK+ZVGudf6PinkiTqkCz+A6RY
- jiWtDQAA
+ string: "\n\n\n \n 173 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22JHEP%22&wl=0\n
+ \ JHEP \n \n \n 100 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20D%22&wl=0\n
+ \ Phys. Rev. D \n \n \n 71 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Phys.%20J.%20C%22&wl=0\n
+ \ Eur. Phys. J. C \n \n \n 50 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20Lett.%22&wl=0\n
+ \ Phys. Rev. Lett. \n \n \n 44 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Lett.%20B%22&wl=0\n
+ \ Phys. Lett. B \n \n \n 41 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22JINST%22&wl=0\n
+ \ JINST \n \n \n 40 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nucl.%20Instrum.%20Methods%20Phys.%20Res.%2C%20A%22&wl=0\n
+ \ Nucl. Instrum. Methods Phys. Res., A \n \n
+ \ \n 25 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20Accel.%20Beams%22&wl=0\n
+ \ Phys. Rev. Accel. Beams \n \n \n
+ \ 23 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Phys.%20J.%20Plus%22&wl=0\n
+ \ Eur. Phys. J. Plus \n \n \n 20 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20C%22&wl=0\n
+ \ Phys. Rev. C \n \n \n 19 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Nucl.%20Sci.%22&wl=0\n
+ \ IEEE Trans. Nucl. Sci. \n \n \n
+ \ 15 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22JCAP%22&wl=0\n
+ \ JCAP \n \n \n 13 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Front.%20Phys.%22&wl=0\n
+ \ Front. Phys. \n \n \n 10 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%22&wl=0\n
+ \ Nature \n \n \n 9 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22SciPost%20Phys.%22&wl=0\n
+ \ SciPost Phys. \n \n \n 8 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Comput.%20Softw.%20Big%20Sci.%22&wl=0\n
+ \ Comput. Softw. Big Sci. \n \n \n
+ \ 7 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Phys.%20J.%20A%22&wl=0\n
+ \ Eur. Phys. J. A \n \n \n 7 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Mach.%20Learn.%20Sci.%20Tech.%22&wl=0\n
+ \ Mach. Learn. Sci. Tech. \n \n \n
+ \ 7 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Sci.%20Rep.%22&wl=0\n
+ \ Sci. Rep. \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Appl.%20Sciences%22&wl=0\n
+ \ Appl. Sciences \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Crystals%22&wl=0\n
+ \ Crystals \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22EPJ%20Tech.%20Instrum.%22&wl=0\n
+ \ EPJ Tech. Instrum. \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Appl.%20Supercond.%22&wl=0\n
+ \ IEEE Trans. Appl. Supercond. \n \n \n
+ \ 6 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%20Phys.%22&wl=0\n
+ \ Nature Phys. \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Supercond.%20Sci.%20Technol.%22&wl=0\n
+ \ Supercond. Sci. Technol. \n \n \n
+ \ 6 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Symmetry%22&wl=0\n
+ \ Symmetry \n \n \n 5 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Front.%20Big%20Data%22&wl=0\n
+ \ Front. Big Data \n \n \n 5 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20B%22&wl=0\n
+ \ Phys. Rev. B \n \n \n 5 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Rep.%20Prog.%20Phys.%22&wl=0\n
+ \ Rep. Prog. Phys. \n \n \n 5 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Rev.%20Sci.%20Instrum.%22&wl=0\n
+ \ Rev. Sci. Instrum. \n \n \n 5 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Sensors%22&wl=0\n
+ \ Sensors \n \n \n 4 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Ann.%20Phys.%20%28Leipzig%29%22&wl=0\n
+ \ Ann. Phys. (Leipzig) \n \n \n 4 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Astron.%20Astrophys.%22&wl=0\n
+ \ Astron. Astrophys. \n \n \n 4 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nucl.%20Instrum.%20Methods%20Phys.%20Res.%2C%20B%22&wl=0\n
+ \ Nucl. Instrum. Methods Phys. Res., B \n \n
+ \ \n 3 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Appl.%20Phys.%20Lett.%22&wl=0\n
+ \ Appl. Phys. Lett. \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Appl.%20Radiat.%20Isot.%22&wl=0\n
+ \ Appl. Radiat. Isot. \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Comput.%20Phys.%20Commun.%22&wl=0\n
+ \ Comput. Phys. Commun. \n \n \n
+ \ 3 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Cryogenics%22&wl=0\n
+ \ Cryogenics \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Fortschr.%20Phys.%22&wl=0\n
+ \ Fortschr. Phys. \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Access%22&wl=0\n
+ \ IEEE Access \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Instruments%22&wl=0\n
+ \ Instruments \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Int.%20J.%20Mod.%20Phys.%20A%22&wl=0\n
+ \ Int. J. Mod. Phys. A \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Phys.%20A%22&wl=0\n
+ \ J. Phys. A \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Phys.%20G%22&wl=0\n
+ \ J. Phys. G \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22MDPI%20Physics%22&wl=0\n
+ \ MDPI Physics \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Mon.%20Not.%20R.%20Astron.%20Soc.%22&wl=0\n
+ \ Mon. Not. R. Astron. Soc. \n \n \n
+ \ 3 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%20Commun.%22&wl=0\n
+ \ Nature Commun. \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22New%20J.%20Phys.%22&wl=0\n
+ \ New J. Phys. \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nucl.%20Phys.%20News%22&wl=0\n
+ \ Nucl. Phys. News \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20A%22&wl=0\n
+ \ Phys. Rev. A \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Prog.%20Part.%20Nucl.%20Phys.%22&wl=0\n
+ \ Prog. Part. Nucl. Phys. \n \n \n
+ \ 3 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Quantum%22&wl=0\n
+ \ Quantum \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Universe%22&wl=0\n
+ \ Universe \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Astropart.%20Phys.%22&wl=0\n
+ \ Astropart. Phys. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Class.%20Quantum%20Gravity%22&wl=0\n
+ \ Class. Quantum Gravity \n \n \n
+ \ 2 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Environ.%20Sci.%20Technol.%22&wl=0\n
+ \ Environ. Sci. Technol. \n \n \n
+ \ 2 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22EPL%22&wl=0\n
+ \ EPL \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Sensors%20J.%22&wl=0\n
+ \ IEEE Sensors J. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Parallel%20Distrib.%20Syst.%22&wl=0\n
+ \ IEEE Trans. Parallel Distrib. Syst. \n \n
+ \ \n 2 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Rad.%20Plasma%20Med.%20Sci.%22&wl=0\n
+ \ IEEE Trans. Rad. Plasma Med. Sci. \n \n
+ \ \n 2 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Int.%20J.%20Heat%20Mass%20Transf.%22&wl=0\n
+ \ Int. J. Heat Mass Transf. \n \n \n
+ \ 2 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nucl.%20Phys.%20B%22&wl=0\n
+ \ Nucl. Phys. B \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Photon.%22&wl=0\n
+ \ Photon. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Dark%20Univ.%22&wl=0\n
+ \ Phys. Dark Univ. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Educ.%22&wl=0\n
+ \ Phys. Educ. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Med.%20Biol.%22&wl=0\n
+ \ Phys. Med. Biol. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20E%22&wl=0\n
+ \ Phys. Rev. E \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20Res.%22&wl=0\n
+ \ Phys. Rev. Res. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22PTEP%22&wl=0\n
+ \ PTEP \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22SciPost%20Phys.%20Proc.%22&wl=0\n
+ \ SciPost Phys. Proc. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22ACM%20Trans.%20Reconf.%20Tech.%20Syst.%22&wl=0\n
+ \ ACM Trans. Reconf. Tech. Syst. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22ACM%20Transactions%20on%20Privacy%20and%20Security%22&wl=0\n
+ \ ACM Transactions on Privacy and Security \n \n
+ \ \n 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22ACS%20Earth%20Space%20Chem.%22&wl=0\n
+ \ ACS Earth Space Chem. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Acta%20Mater.%22&wl=0\n
+ \ Acta Mater. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Advanced%20Materials%20Interfaces%22&wl=0\n
+ \ Advanced Materials Interfaces \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Advances%20in%20Radiation%20Oncology%22&wl=0\n
+ \ Advances in Radiation Oncology \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22AIP%20Adv.%22&wl=0\n
+ \ AIP Adv. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Anal.%20Chim.%20Acta%22&wl=0\n
+ \ Anal. Chim. Acta \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Ann.%20Rev.%20Nucl.%20Part.%20Sci.%22&wl=0\n
+ \ Ann. Rev. Nucl. Part. Sci. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Appl.%20Opt.%22&wl=0\n
+ \ Appl. Opt. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Astrophys.%20J.%20Lett.%22&wl=0\n
+ \ Astrophys. J. Lett. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Atmos.%20Chem.%20Phys.%22&wl=0\n
+ \ Atmos. Chem. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Batteries%22&wl=0\n
+ \ Batteries \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Bull.%20Russ.%20Acad.%20Sci.%20Phys.%22&wl=0\n
+ \ Bull. Russ. Acad. Sci. Phys. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22CEAS%20Space%20J.%22&wl=0\n
+ \ CEAS Space J. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22ChemPhysChem%22&wl=0\n
+ \ ChemPhysChem \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Chin.%20Phys.%20C%22&wl=0\n
+ \ Chin. Phys. C \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Clinical%20and%20Translational%20Radiation%20Oncology%22&wl=0\n
+ \ Clinical and Translational Radiation Oncology \n \n
+ \ \n 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Commun.%20Math.%20Phys.%22&wl=0\n
+ \ Commun. Math. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Comp.%20Meth.%20Appl.%20Math.%22&wl=0\n
+ \ Comp. Meth. Appl. Math. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Data%20in%20Brief%22&wl=0\n
+ \ Data in Brief \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22EJNMMI%20Physics%22&wl=0\n
+ \ EJNMMI Physics \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Environmental%20Science%3A%20Atmospheres%22&wl=0\n
+ \ Environmental Science: Atmospheres \n \n
+ \ \n 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Environments%22&wl=0\n
+ \ Environments \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Financ.%20Manag.%22&wl=0\n
+ \ Eur. Financ. Manag. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20J.%20Phys.%22&wl=0\n
+ \ Eur. J. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Phys.%20J.%22&wl=0\n
+ \ Eur. Phys. J. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Phys.%20J.%20D%22&wl=0\n
+ \ Eur. Phys. J. D \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Phys.%20J.%20Spec.%20Top.%22&wl=0\n
+ \ Eur. Phys. J. Spec. Top. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Experimental%20Thermal%20and%20Fluid%20Science%22&wl=0\n
+ \ Experimental Thermal and Fluid Science \n \n
+ \ \n 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Few-Body%20Syst.%22&wl=0\n
+ \ Few-Body Syst. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Fire%20Safety%20J.%22&wl=0\n
+ \ Fire Safety J. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Front.%20Chem.%22&wl=0\n
+ \ Front. Chem. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Frontiers%20in%20Medicine%22&wl=0\n
+ \ Frontiers in Medicine \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Future%20Gener.%20Comput.%20Syst.%22&wl=0\n
+ \ Future Gener. Comput. Syst. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Future%20Microbiology%22&wl=0\n
+ \ Future Microbiology \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Geochim.%20Cosmochim.%20Acta%22&wl=0\n
+ \ Geochim. Cosmochim. Acta \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Heliyon%22&wl=0\n
+ \ Heliyon \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Systems%20J.%22&wl=0\n
+ \ IEEE Systems J. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Educ.%22&wl=0\n
+ \ IEEE Trans. Educ. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Electron%20Devices%22&wl=0\n
+ \ IEEE Trans. Electron Devices \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Microw.%20Theory%20Tech.%22&wl=0\n
+ \ IEEE Trans. Microw. Theory Tech. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Plasma%20Sci.%22&wl=0\n
+ \ IEEE Trans. Plasma Sci. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Quantum%20Eng.%22&wl=0\n
+ \ IEEE Trans. Quantum Eng. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IFAC-PapersOnLine%22&wl=0\n
+ \ IFAC-PapersOnLine \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Int.%20J.%20Heat%20Fluid%20FL%22&wl=0\n
+ \ Int. J. Heat Fluid FL \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Int.%20J.%20Sci.%20Edu.%22&wl=0\n
+ \ Int. J. Sci. Edu. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Int.%20J.%20Theor.%20Phys.%22&wl=0\n
+ \ Int. J. Theor. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Interface%20Focus%22&wl=0\n
+ \ Interface Focus \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Inverse%20Prob.%20Imaging%22&wl=0\n
+ \ Inverse Prob. Imaging \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Appl.%20Phys.%22&wl=0\n
+ \ J. Appl. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Chem.%20Phys.%22&wl=0\n
+ \ J. Chem. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Comput.%20Appl.%20Math.%22&wl=0\n
+ \ J. Comput. Appl. Math. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Integer%20Sequences%22&wl=0\n
+ \ J. Integer Sequences \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Lightwave%20Technol.%22&wl=0\n
+ \ J. Lightwave Technol. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Mach.%20Learn.%20Res.%22&wl=0\n
+ \ J. Mach. Learn. Res. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Mater.%20Chem.%22&wl=0\n
+ \ J. Mater. Chem. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Mater.%20Process%20Tech.%22&wl=0\n
+ \ J. Mater. Process Tech. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Math.%20Industry%22&wl=0\n
+ \ J. Math. Industry \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Phys.%20B%22&wl=0\n
+ \ J. Phys. B \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Phys.%20D%22&wl=0\n
+ \ J. Phys. D \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Phys.%3A%20Conf.%20Ser.%22&wl=0\n
+ \ J. Phys.: Conf. Ser. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Radioanal.%20Nucl.%20Chem.%22&wl=0\n
+ \ J. Radioanal. Nucl. Chem. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Radiol.%20Prot.%22&wl=0\n
+ \ J. Radiol. Prot. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Res.%20Sci.%20Teach.%22&wl=0\n
+ \ J. Res. Sci. Teach. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Stat.%20Phys.%22&wl=0\n
+ \ J. Stat. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Vac.%20Sci.%20Technol.%20A%22&wl=0\n
+ \ J. Vac. Sci. Technol. A \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22JHEAp%22&wl=0\n
+ \ JHEAp \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22JISTaP%22&wl=0\n
+ \ JISTaP \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Living%20Rev.%20Relativ.%22&wl=0\n
+ \ Living Rev. Relativ. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22MagnetoHydrodyn.%22&wl=0\n
+ \ MagnetoHydrodyn. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Materials%22&wl=0\n
+ \ Materials \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Materials%20Advances%22&wl=0\n
+ \ Materials Advances \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Meas.%20Sci.%20Technol.%22&wl=0\n
+ \ Meas. Sci. Technol. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Metrolog.%22&wl=0\n
+ \ Metrolog. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Microelectron.%20Eng.%22&wl=0\n
+ \ Microelectron. Eng. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Microelectron.%20Reliab.%22&wl=0\n
+ \ Microelectron. Reliab. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Mod.%20Phys.%20Lett.%20A%22&wl=0\n
+ \ Mod. Phys. Lett. A \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Model.%20Simul.%20Eng.%22&wl=0\n
+ \ Model. Simul. Eng. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%20Astron.%22&wl=0\n
+ \ Nature Astron. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%20Chem.%22&wl=0\n
+ \ Nature Chem. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%20Mach.%20Intell.%22&wl=0\n
+ \ Nature Mach. Intell. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%20Rev.%20Phys.%22&wl=0\n
+ \ Nature Rev. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nuovo%20Cimento%2C%20Riv.%22&wl=0\n
+ \ Nuovo Cimento, Riv. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Opt.%20Lett.%22&wl=0\n
+ \ Opt. Lett. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Optica%22&wl=0\n
+ \ Optica \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Optical%20Materials%20Express%22&wl=0\n
+ \ Optical Materials Express \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Particles%22&wl=0\n
+ \ Particles \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Pharmaceutics%22&wl=0\n
+ \ Pharmaceutics \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Philos.%20Trans.%20R.%20Soc.%20Lond.%20A%22&wl=0\n
+ \ Philos. Trans. R. Soc. Lond. A \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Part.%20Nucl.%22&wl=0\n
+ \ Phys. Part. Nucl. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Part.%20Nucl.%20Lett.%22&wl=0\n
+ \ Phys. Part. Nucl. Lett. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Plasmas%22&wl=0\n
+ \ Phys. Plasmas \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rep.%22&wl=0\n
+ \ Phys. Rep. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Status%20Solidi%20B%22&wl=0\n
+ \ Phys. Status Solidi B \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Physica%20Medica%22&wl=0\n
+ \ Physica Medica \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Physics%22&wl=0\n
+ \ Physics \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Polymers%22&wl=0\n
+ \ Polymers \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22PoS%22&wl=0\n
+ \ PoS \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Pramana%20-%20J.%20Phys.%22&wl=0\n
+ \ Pramana - J. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Rad.%20Det.%20Tech.%20Meth.%22&wl=0\n
+ \ Rad. Det. Tech. Meth. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Radiat.%20Meas.%22&wl=0\n
+ \ Radiat. Meas. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Radiat.%20Phys.%20Chem.%22&wl=0\n
+ \ Radiat. Phys. Chem. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Radiat.%20Prot.%20Dosim.%22&wl=0\n
+ \ Radiat. Prot. Dosim. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Radiother.%20Oncol.%22&wl=0\n
+ \ Radiother. Oncol. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Res.%20Notes%20AAS%22&wl=0\n
+ \ Res. Notes AAS \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Research%20Outreach%22&wl=0\n
+ \ Research Outreach \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Robotics%22&wl=0\n
+ \ Robotics \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Roy.%20Soc.%20Open%20Sci.%22&wl=0\n
+ \ Roy. Soc. Open Sci. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Sci.%20Adv.%22&wl=0\n
+ \ Sci. Adv. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Sci.%20Bull.%22&wl=0\n
+ \ Sci. Bull. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Sci.%20Data%22&wl=0\n
+ \ Sci. Data \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Science%22&wl=0\n
+ \ Science \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Smart%20Mater.%20Struct.%22&wl=0\n
+ \ Smart Mater. Struct. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22SN%20Comput.%20Sci.%22&wl=0\n
+ \ SN Comput. Sci. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Softw%20Pract%20Exper.%22&wl=0\n
+ \ Softw Pract Exper. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Surf.%20Coat.%20Technol.%22&wl=0\n
+ \ Surf. Coat. Technol. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Swiss%20Journal%20of%20Geosciences%22&wl=0\n
+ \ Swiss Journal of Geosciences \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Swiss%20Medical%20Weekly%22&wl=0\n
+ \ Swiss Medical Weekly \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22The%20Messenger%22&wl=0\n
+ \ The Messenger \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22The%20Physics%20Educator%22&wl=0\n
+ \ The Physics Educator \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Transport%20in%20Porous%20Media%22&wl=0\n
+ \ Transport in Porous Media \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Vacuum%22&wl=0\n
+ \ Vacuum \n \n \n 975 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22TOTAL%22&wl=0\n
+ \ TOTAL \n \n \n "
headers:
Access-Control-Allow-Origin:
- '*'
Cache-Control:
- - public, max-age=3600, no-cache="set-cookie"
+ - no-cache="set-cookie"
Connection:
- Keep-Alive
- Content-Encoding:
- - gzip
- Content-Length:
- - '1146'
Content-Type:
- - text/plain; charset=utf-8
+ - application/xml
Date:
- - Fri, 27 Oct 2023 10:01:05 GMT
+ - Fri, 10 Nov 2023 09:45:40 GMT
Keep-Alive:
- timeout=15, max=100
Server:
- Apache
Set-Cookie:
- INVENIOSESSIONstub=NO; path=/; HttpOnly
- - INVENIOSESSION=a38f49d8b513f0b38a28a7a96fc4b900; path=/; HttpOnly
- Vary:
- - ETag,Cache-Control,Accept-Encoding
+ - INVENIOSESSION=4cce8d9e24fb717079f6b4347ba08c1e; path=/; HttpOnly
+ Transfer-Encoding:
+ - chunked
Via:
- 1.1 cds.cern.ch
status:
diff --git a/annual-reports/tests/cassettes/TestAPI.test_publications.yaml b/annual-reports/tests/cassettes/TestAPI.test_publications.yaml
index f6af08c..177011a 100644
--- a/annual-reports/tests/cassettes/TestAPI.test_publications.yaml
+++ b/annual-reports/tests/cassettes/TestAPI.test_publications.yaml
@@ -11,152 +11,30 @@ interactions:
User-Agent:
- python-requests/2.31.0
method: GET
- uri: https://cds.cern.ch/search?p=(980:ARTICLE+or+980:BOOK+or+980:PROCEEDINGS+or+690:'YELLOW+REPORT'+or+980:REPORT)+and+year:2022+and+(affiliation:CERN+or+260:CERN+or+595:'For+annual+report')+not+595:'Not+for+annual+report'&of=xm&rg=1
+ uri: https://cds.cern.ch/tools/custom_query_summary.py?end=2022&refresh=1&repeated_values=0&start=2022
response:
body:
- string: !!binary |
- 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
- ihkAAA==
+ string: "\n
\n502
+ Proxy Error \n\nProxy Error \nThe proxy server
+ received an invalid\r\nresponse from an upstream server. \r\nThe proxy
+ server could not handle the request GET /tools/custom_query_summary.py .
\nReason:
+ Error reading from remote server
\n\n"
headers:
- Access-Control-Allow-Origin:
- - '*'
- Cache-Control:
- - public, max-age=3600, no-cache="set-cookie"
- Connection:
- - Keep-Alive
- Content-Encoding:
- - gzip
- Content-Length:
- - '1885'
- Content-Type:
- - text/xml
- Date:
- - Fri, 27 Oct 2023 09:56:07 GMT
- Keep-Alive:
- - timeout=15, max=100
- Server:
- - Apache
- Set-Cookie:
- - INVENIOSESSIONstub=NO; path=/; HttpOnly
- - INVENIOSESSION=8fa27cd668cadd98aa9485a3d8175105; path=/; HttpOnly
- Vary:
- - ETag,Cache-Control,Accept-Encoding
- Via:
- - 1.1 cds.cern.ch
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python-requests/2.31.0
- method: GET
- uri: https://cds.cern.ch/search?ln=en&cc=Published+Articles&p=%28affiliation%3ACERN+or+595%3A%27For+annual+report%27%29+and+year%3A2022+not+980%3AConferencePaper+not+980%3ABookChapter+not+595%3A%27Not+for+annual+report%27&action_search=Search&op1=a&m1=a&p1=&f1=&c=Published+Articles&c=&sf=&so=d&rm=&rg=1&sc=0&of=xm
- response:
- body:
- string: !!binary |
- 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
- headers:
- Access-Control-Allow-Origin:
- - '*'
- Cache-Control:
- - public, max-age=3600, no-cache="set-cookie"
Connection:
- Keep-Alive
- Content-Encoding:
- - gzip
Content-Length:
- - '1920'
+ - '437'
Content-Type:
- - text/xml
+ - text/html; charset=iso-8859-1
Date:
- - Fri, 27 Oct 2023 09:56:30 GMT
+ - Fri, 10 Nov 2023 09:41:58 GMT
Keep-Alive:
- timeout=15, max=100
Server:
- Apache
- Set-Cookie:
- - INVENIOSESSIONstub=NO; path=/; HttpOnly
- - INVENIOSESSION=959ba56e61a34f27f8d6a1411e8c2e12; path=/; HttpOnly
- Vary:
- - ETag,Cache-Control,Accept-Encoding
- Via:
- - 1.1 cds.cern.ch
status:
- code: 200
- message: OK
+ code: 502
+ message: Proxy Error
- request:
body: null
headers:
@@ -169,69 +47,30 @@ interactions:
User-Agent:
- python-requests/2.31.0
method: GET
- uri: https://cds.cern.ch/search?wl=0&ln=en&cc=Published+Articles&p=980%3AARTICLE+and+%28affiliation%3ACERN+or+595%3A%27For+annual+report%27%29+and+year%3A2022+and+980%3AConferencePaper+not+595%3A%27Not+for+annual+report%27&f=&action_search=Search&c=Published+Articles&c=&sf=author&so=a&rm=&rg=1&sc=1&of=xm
+ uri: https://cds.cern.ch/tools/custom_query_summary.py?end=2022&refresh=1&repeated_values=0&start=2022
response:
body:
- string: !!binary |
- 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
- pxsAAA==
+ string: "\n\n502
+ Proxy Error \n\nProxy Error \nThe proxy server
+ received an invalid\r\nresponse from an upstream server. \r\nThe proxy
+ server could not handle the request GET /tools/custom_query_summary.py .
\nReason:
+ Error reading from remote server
\n\n"
headers:
- Access-Control-Allow-Origin:
- - '*'
- Cache-Control:
- - public, max-age=3600, no-cache="set-cookie"
Connection:
- Keep-Alive
- Content-Encoding:
- - gzip
Content-Length:
- - '1657'
+ - '437'
Content-Type:
- - text/xml
+ - text/html; charset=iso-8859-1
Date:
- - Fri, 27 Oct 2023 09:56:35 GMT
+ - Fri, 10 Nov 2023 09:42:59 GMT
Keep-Alive:
- timeout=15, max=100
Server:
- Apache
- Set-Cookie:
- - INVENIOSESSIONstub=NO; path=/; HttpOnly
- - INVENIOSESSION=8c0fd77f19beeb63afce8eb5382ff660; path=/; HttpOnly
- Vary:
- - ETag,Cache-Control,Accept-Encoding
- Via:
- - 1.1 cds.cern.ch
status:
- code: 200
- message: OK
+ code: 502
+ message: Proxy Error
- request:
body: null
headers:
@@ -244,111 +83,30 @@ interactions:
User-Agent:
- python-requests/2.31.0
method: GET
- uri: https://cds.cern.ch/search?ln=en&p=affiliation%3ACERN+or+260%3ACERN+and+260%3A2022++and+%28980%3ABOOK+or+980%3APROCEEDINGS+or+690%3A%27YELLOW+REPORT%27+or+980%3ABookChapter+or+980%3AREPORT%29+not+595%3A%27Not+for+annual+report%27&action_search=Search&op1=a&m1=a&p1=&f1=&c=Articles+%26+Preprints&c=Books+%26+Proceedings&sf=&so=d&rm=&rg=1&sc=1&of=xm
+ uri: https://cds.cern.ch/tools/custom_query_summary.py?end=2022&refresh=1&repeated_values=0&start=2022
response:
body:
- string: !!binary |
- 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
+ string: "\n\n502
+ Proxy Error \n\nProxy Error \nThe proxy server
+ received an invalid\r\nresponse from an upstream server. \r\nThe proxy
+ server could not handle the request GET /tools/custom_query_summary.py .
\nReason:
+ Error reading from remote server
\n\n"
headers:
- Access-Control-Allow-Origin:
- - '*'
- Cache-Control:
- - public, max-age=3600, no-cache="set-cookie"
Connection:
- Keep-Alive
- Content-Encoding:
- - gzip
Content-Length:
- - '4086'
+ - '437'
Content-Type:
- - text/xml
+ - text/html; charset=iso-8859-1
Date:
- - Fri, 27 Oct 2023 09:56:47 GMT
+ - Fri, 10 Nov 2023 09:44:00 GMT
Keep-Alive:
- timeout=15, max=100
Server:
- Apache
- Set-Cookie:
- - INVENIOSESSIONstub=NO; path=/; HttpOnly
- - INVENIOSESSION=272d1ea3220a01d558eeef2803b4be0e; path=/; HttpOnly
- Vary:
- - ETag,Cache-Control,Accept-Encoding
- Via:
- - 1.1 cds.cern.ch
status:
- code: 200
- message: OK
+ code: 502
+ message: Proxy Error
- request:
body: null
headers:
@@ -361,65 +119,421 @@ interactions:
User-Agent:
- python-requests/2.31.0
method: GET
- uri: https://cds.cern.ch/search?wl=0&ln=en&cc=CERN+Theses&p=502%3A%272022%27+and+502%3Aphd&f=&action_search=Search&c=CERN+Theses&c=&sf=&so=d&rm=&rg=1&sc=1&of=xm
+ uri: https://cds.cern.ch/tools/custom_query_summary.py?end=2022&refresh=1&repeated_values=0&start=2022
response:
body:
- string: !!binary |
- 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
- 9BV2d5sc/gGIxdAPhhYAAA==
+ string: "\n\n\n \n 173 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22JHEP%22&wl=0\n
+ \ JHEP \n \n \n 100 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20D%22&wl=0\n
+ \ Phys. Rev. D \n \n \n 71 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Phys.%20J.%20C%22&wl=0\n
+ \ Eur. Phys. J. C \n \n \n 50 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20Lett.%22&wl=0\n
+ \ Phys. Rev. Lett. \n \n \n 44 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Lett.%20B%22&wl=0\n
+ \ Phys. Lett. B \n \n \n 41 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22JINST%22&wl=0\n
+ \ JINST \n \n \n 40 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nucl.%20Instrum.%20Methods%20Phys.%20Res.%2C%20A%22&wl=0\n
+ \ Nucl. Instrum. Methods Phys. Res., A \n \n
+ \ \n 25 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20Accel.%20Beams%22&wl=0\n
+ \ Phys. Rev. Accel. Beams \n \n \n
+ \ 23 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Phys.%20J.%20Plus%22&wl=0\n
+ \ Eur. Phys. J. Plus \n \n \n 20 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20C%22&wl=0\n
+ \ Phys. Rev. C \n \n \n 19 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Nucl.%20Sci.%22&wl=0\n
+ \ IEEE Trans. Nucl. Sci. \n \n \n
+ \ 15 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22JCAP%22&wl=0\n
+ \ JCAP \n \n \n 13 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Front.%20Phys.%22&wl=0\n
+ \ Front. Phys. \n \n \n 10 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%22&wl=0\n
+ \ Nature \n \n \n 9 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22SciPost%20Phys.%22&wl=0\n
+ \ SciPost Phys. \n \n \n 8 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Comput.%20Softw.%20Big%20Sci.%22&wl=0\n
+ \ Comput. Softw. Big Sci. \n \n \n
+ \ 7 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Phys.%20J.%20A%22&wl=0\n
+ \ Eur. Phys. J. A \n \n \n 7 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Mach.%20Learn.%20Sci.%20Tech.%22&wl=0\n
+ \ Mach. Learn. Sci. Tech. \n \n \n
+ \ 7 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Sci.%20Rep.%22&wl=0\n
+ \ Sci. Rep. \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Appl.%20Sciences%22&wl=0\n
+ \ Appl. Sciences \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Crystals%22&wl=0\n
+ \ Crystals \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22EPJ%20Tech.%20Instrum.%22&wl=0\n
+ \ EPJ Tech. Instrum. \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Appl.%20Supercond.%22&wl=0\n
+ \ IEEE Trans. Appl. Supercond. \n \n \n
+ \ 6 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%20Phys.%22&wl=0\n
+ \ Nature Phys. \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Supercond.%20Sci.%20Technol.%22&wl=0\n
+ \ Supercond. Sci. Technol. \n \n \n
+ \ 6 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Symmetry%22&wl=0\n
+ \ Symmetry \n \n \n 5 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Front.%20Big%20Data%22&wl=0\n
+ \ Front. Big Data \n \n \n 5 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20B%22&wl=0\n
+ \ Phys. Rev. B \n \n \n 5 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Rep.%20Prog.%20Phys.%22&wl=0\n
+ \ Rep. Prog. Phys. \n \n \n 5 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Rev.%20Sci.%20Instrum.%22&wl=0\n
+ \ Rev. Sci. Instrum. \n \n \n 5 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Sensors%22&wl=0\n
+ \ Sensors \n \n \n 4 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Ann.%20Phys.%20%28Leipzig%29%22&wl=0\n
+ \ Ann. Phys. (Leipzig) \n \n \n 4 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Astron.%20Astrophys.%22&wl=0\n
+ \ Astron. Astrophys. \n \n \n 4 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nucl.%20Instrum.%20Methods%20Phys.%20Res.%2C%20B%22&wl=0\n
+ \ Nucl. Instrum. Methods Phys. Res., B \n \n
+ \ \n 3 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Appl.%20Phys.%20Lett.%22&wl=0\n
+ \ Appl. Phys. Lett. \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Appl.%20Radiat.%20Isot.%22&wl=0\n
+ \ Appl. Radiat. Isot. \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Comput.%20Phys.%20Commun.%22&wl=0\n
+ \ Comput. Phys. Commun. \n \n \n
+ \ 3 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Cryogenics%22&wl=0\n
+ \ Cryogenics \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Fortschr.%20Phys.%22&wl=0\n
+ \ Fortschr. Phys. \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Access%22&wl=0\n
+ \ IEEE Access \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Instruments%22&wl=0\n
+ \ Instruments \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Int.%20J.%20Mod.%20Phys.%20A%22&wl=0\n
+ \ Int. J. Mod. Phys. A \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Phys.%20A%22&wl=0\n
+ \ J. Phys. A \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Phys.%20G%22&wl=0\n
+ \ J. Phys. G \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22MDPI%20Physics%22&wl=0\n
+ \ MDPI Physics \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Mon.%20Not.%20R.%20Astron.%20Soc.%22&wl=0\n
+ \ Mon. Not. R. Astron. Soc. \n \n \n
+ \ 3 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%20Commun.%22&wl=0\n
+ \ Nature Commun. \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22New%20J.%20Phys.%22&wl=0\n
+ \ New J. Phys. \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nucl.%20Phys.%20News%22&wl=0\n
+ \ Nucl. Phys. News \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20A%22&wl=0\n
+ \ Phys. Rev. A \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Prog.%20Part.%20Nucl.%20Phys.%22&wl=0\n
+ \ Prog. Part. Nucl. Phys. \n \n \n
+ \ 3 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Quantum%22&wl=0\n
+ \ Quantum \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Universe%22&wl=0\n
+ \ Universe \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Astropart.%20Phys.%22&wl=0\n
+ \ Astropart. Phys. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Class.%20Quantum%20Gravity%22&wl=0\n
+ \ Class. Quantum Gravity \n \n \n
+ \ 2 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Environ.%20Sci.%20Technol.%22&wl=0\n
+ \ Environ. Sci. Technol. \n \n \n
+ \ 2 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22EPL%22&wl=0\n
+ \ EPL \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Sensors%20J.%22&wl=0\n
+ \ IEEE Sensors J. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Parallel%20Distrib.%20Syst.%22&wl=0\n
+ \ IEEE Trans. Parallel Distrib. Syst. \n \n
+ \ \n 2 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Rad.%20Plasma%20Med.%20Sci.%22&wl=0\n
+ \ IEEE Trans. Rad. Plasma Med. Sci. \n \n
+ \ \n 2 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Int.%20J.%20Heat%20Mass%20Transf.%22&wl=0\n
+ \ Int. J. Heat Mass Transf. \n \n \n
+ \ 2 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nucl.%20Phys.%20B%22&wl=0\n
+ \ Nucl. Phys. B \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Photon.%22&wl=0\n
+ \ Photon. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Dark%20Univ.%22&wl=0\n
+ \ Phys. Dark Univ. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Educ.%22&wl=0\n
+ \ Phys. Educ. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Med.%20Biol.%22&wl=0\n
+ \ Phys. Med. Biol. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20E%22&wl=0\n
+ \ Phys. Rev. E \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rev.%20Res.%22&wl=0\n
+ \ Phys. Rev. Res. \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22PTEP%22&wl=0\n
+ \ PTEP \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22SciPost%20Phys.%20Proc.%22&wl=0\n
+ \ SciPost Phys. Proc. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22ACM%20Trans.%20Reconf.%20Tech.%20Syst.%22&wl=0\n
+ \ ACM Trans. Reconf. Tech. Syst. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22ACM%20Transactions%20on%20Privacy%20and%20Security%22&wl=0\n
+ \ ACM Transactions on Privacy and Security \n \n
+ \ \n 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22ACS%20Earth%20Space%20Chem.%22&wl=0\n
+ \ ACS Earth Space Chem. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Acta%20Mater.%22&wl=0\n
+ \ Acta Mater. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Advanced%20Materials%20Interfaces%22&wl=0\n
+ \ Advanced Materials Interfaces \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Advances%20in%20Radiation%20Oncology%22&wl=0\n
+ \ Advances in Radiation Oncology \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22AIP%20Adv.%22&wl=0\n
+ \ AIP Adv. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Anal.%20Chim.%20Acta%22&wl=0\n
+ \ Anal. Chim. Acta \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Ann.%20Rev.%20Nucl.%20Part.%20Sci.%22&wl=0\n
+ \ Ann. Rev. Nucl. Part. Sci. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Appl.%20Opt.%22&wl=0\n
+ \ Appl. Opt. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Astrophys.%20J.%20Lett.%22&wl=0\n
+ \ Astrophys. J. Lett. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Atmos.%20Chem.%20Phys.%22&wl=0\n
+ \ Atmos. Chem. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Batteries%22&wl=0\n
+ \ Batteries \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Bull.%20Russ.%20Acad.%20Sci.%20Phys.%22&wl=0\n
+ \ Bull. Russ. Acad. Sci. Phys. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22CEAS%20Space%20J.%22&wl=0\n
+ \ CEAS Space J. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22ChemPhysChem%22&wl=0\n
+ \ ChemPhysChem \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Chin.%20Phys.%20C%22&wl=0\n
+ \ Chin. Phys. C \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Clinical%20and%20Translational%20Radiation%20Oncology%22&wl=0\n
+ \ Clinical and Translational Radiation Oncology \n \n
+ \ \n 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Commun.%20Math.%20Phys.%22&wl=0\n
+ \ Commun. Math. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Comp.%20Meth.%20Appl.%20Math.%22&wl=0\n
+ \ Comp. Meth. Appl. Math. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Data%20in%20Brief%22&wl=0\n
+ \ Data in Brief \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22EJNMMI%20Physics%22&wl=0\n
+ \ EJNMMI Physics \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Environmental%20Science%3A%20Atmospheres%22&wl=0\n
+ \ Environmental Science: Atmospheres \n \n
+ \ \n 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Environments%22&wl=0\n
+ \ Environments \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Financ.%20Manag.%22&wl=0\n
+ \ Eur. Financ. Manag. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20J.%20Phys.%22&wl=0\n
+ \ Eur. J. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Phys.%20J.%22&wl=0\n
+ \ Eur. Phys. J. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Phys.%20J.%20D%22&wl=0\n
+ \ Eur. Phys. J. D \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Eur.%20Phys.%20J.%20Spec.%20Top.%22&wl=0\n
+ \ Eur. Phys. J. Spec. Top. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Experimental%20Thermal%20and%20Fluid%20Science%22&wl=0\n
+ \ Experimental Thermal and Fluid Science \n \n
+ \ \n 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Few-Body%20Syst.%22&wl=0\n
+ \ Few-Body Syst. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Fire%20Safety%20J.%22&wl=0\n
+ \ Fire Safety J. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Front.%20Chem.%22&wl=0\n
+ \ Front. Chem. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Frontiers%20in%20Medicine%22&wl=0\n
+ \ Frontiers in Medicine \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Future%20Gener.%20Comput.%20Syst.%22&wl=0\n
+ \ Future Gener. Comput. Syst. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Future%20Microbiology%22&wl=0\n
+ \ Future Microbiology \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Geochim.%20Cosmochim.%20Acta%22&wl=0\n
+ \ Geochim. Cosmochim. Acta \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Heliyon%22&wl=0\n
+ \ Heliyon \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Systems%20J.%22&wl=0\n
+ \ IEEE Systems J. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Educ.%22&wl=0\n
+ \ IEEE Trans. Educ. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Electron%20Devices%22&wl=0\n
+ \ IEEE Trans. Electron Devices \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Microw.%20Theory%20Tech.%22&wl=0\n
+ \ IEEE Trans. Microw. Theory Tech. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Plasma%20Sci.%22&wl=0\n
+ \ IEEE Trans. Plasma Sci. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IEEE%20Trans.%20Quantum%20Eng.%22&wl=0\n
+ \ IEEE Trans. Quantum Eng. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22IFAC-PapersOnLine%22&wl=0\n
+ \ IFAC-PapersOnLine \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Int.%20J.%20Heat%20Fluid%20FL%22&wl=0\n
+ \ Int. J. Heat Fluid FL \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Int.%20J.%20Sci.%20Edu.%22&wl=0\n
+ \ Int. J. Sci. Edu. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Int.%20J.%20Theor.%20Phys.%22&wl=0\n
+ \ Int. J. Theor. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Interface%20Focus%22&wl=0\n
+ \ Interface Focus \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Inverse%20Prob.%20Imaging%22&wl=0\n
+ \ Inverse Prob. Imaging \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Appl.%20Phys.%22&wl=0\n
+ \ J. Appl. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Chem.%20Phys.%22&wl=0\n
+ \ J. Chem. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Comput.%20Appl.%20Math.%22&wl=0\n
+ \ J. Comput. Appl. Math. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Integer%20Sequences%22&wl=0\n
+ \ J. Integer Sequences \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Lightwave%20Technol.%22&wl=0\n
+ \ J. Lightwave Technol. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Mach.%20Learn.%20Res.%22&wl=0\n
+ \ J. Mach. Learn. Res. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Mater.%20Chem.%22&wl=0\n
+ \ J. Mater. Chem. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Mater.%20Process%20Tech.%22&wl=0\n
+ \ J. Mater. Process Tech. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Math.%20Industry%22&wl=0\n
+ \ J. Math. Industry \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Phys.%20B%22&wl=0\n
+ \ J. Phys. B \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Phys.%20D%22&wl=0\n
+ \ J. Phys. D \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Phys.%3A%20Conf.%20Ser.%22&wl=0\n
+ \ J. Phys.: Conf. Ser. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Radioanal.%20Nucl.%20Chem.%22&wl=0\n
+ \ J. Radioanal. Nucl. Chem. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Radiol.%20Prot.%22&wl=0\n
+ \ J. Radiol. Prot. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Res.%20Sci.%20Teach.%22&wl=0\n
+ \ J. Res. Sci. Teach. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Stat.%20Phys.%22&wl=0\n
+ \ J. Stat. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22J.%20Vac.%20Sci.%20Technol.%20A%22&wl=0\n
+ \ J. Vac. Sci. Technol. A \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22JHEAp%22&wl=0\n
+ \ JHEAp \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22JISTaP%22&wl=0\n
+ \ JISTaP \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Living%20Rev.%20Relativ.%22&wl=0\n
+ \ Living Rev. Relativ. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22MagnetoHydrodyn.%22&wl=0\n
+ \ MagnetoHydrodyn. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Materials%22&wl=0\n
+ \ Materials \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Materials%20Advances%22&wl=0\n
+ \ Materials Advances \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Meas.%20Sci.%20Technol.%22&wl=0\n
+ \ Meas. Sci. Technol. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Metrolog.%22&wl=0\n
+ \ Metrolog. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Microelectron.%20Eng.%22&wl=0\n
+ \ Microelectron. Eng. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Microelectron.%20Reliab.%22&wl=0\n
+ \ Microelectron. Reliab. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Mod.%20Phys.%20Lett.%20A%22&wl=0\n
+ \ Mod. Phys. Lett. A \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Model.%20Simul.%20Eng.%22&wl=0\n
+ \ Model. Simul. Eng. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%20Astron.%22&wl=0\n
+ \ Nature Astron. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%20Chem.%22&wl=0\n
+ \ Nature Chem. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%20Mach.%20Intell.%22&wl=0\n
+ \ Nature Mach. Intell. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nature%20Rev.%20Phys.%22&wl=0\n
+ \ Nature Rev. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Nuovo%20Cimento%2C%20Riv.%22&wl=0\n
+ \ Nuovo Cimento, Riv. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Opt.%20Lett.%22&wl=0\n
+ \ Opt. Lett. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Optica%22&wl=0\n
+ \ Optica \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Optical%20Materials%20Express%22&wl=0\n
+ \ Optical Materials Express \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Particles%22&wl=0\n
+ \ Particles \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Pharmaceutics%22&wl=0\n
+ \ Pharmaceutics \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Philos.%20Trans.%20R.%20Soc.%20Lond.%20A%22&wl=0\n
+ \ Philos. Trans. R. Soc. Lond. A \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Part.%20Nucl.%22&wl=0\n
+ \ Phys. Part. Nucl. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Part.%20Nucl.%20Lett.%22&wl=0\n
+ \ Phys. Part. Nucl. Lett. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Plasmas%22&wl=0\n
+ \ Phys. Plasmas \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Rep.%22&wl=0\n
+ \ Phys. Rep. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Phys.%20Status%20Solidi%20B%22&wl=0\n
+ \ Phys. Status Solidi B \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Physica%20Medica%22&wl=0\n
+ \ Physica Medica \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Physics%22&wl=0\n
+ \ Physics \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Polymers%22&wl=0\n
+ \ Polymers \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22PoS%22&wl=0\n
+ \ PoS \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Pramana%20-%20J.%20Phys.%22&wl=0\n
+ \ Pramana - J. Phys. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Rad.%20Det.%20Tech.%20Meth.%22&wl=0\n
+ \ Rad. Det. Tech. Meth. \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Radiat.%20Meas.%22&wl=0\n
+ \ Radiat. Meas. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Radiat.%20Phys.%20Chem.%22&wl=0\n
+ \ Radiat. Phys. Chem. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Radiat.%20Prot.%20Dosim.%22&wl=0\n
+ \ Radiat. Prot. Dosim. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Radiother.%20Oncol.%22&wl=0\n
+ \ Radiother. Oncol. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Res.%20Notes%20AAS%22&wl=0\n
+ \ Res. Notes AAS \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Research%20Outreach%22&wl=0\n
+ \ Research Outreach \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Robotics%22&wl=0\n
+ \ Robotics \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Roy.%20Soc.%20Open%20Sci.%22&wl=0\n
+ \ Roy. Soc. Open Sci. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Sci.%20Adv.%22&wl=0\n
+ \ Sci. Adv. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Sci.%20Bull.%22&wl=0\n
+ \ Sci. Bull. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Sci.%20Data%22&wl=0\n
+ \ Sci. Data \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Science%22&wl=0\n
+ \ Science \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Smart%20Mater.%20Struct.%22&wl=0\n
+ \ Smart Mater. Struct. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22SN%20Comput.%20Sci.%22&wl=0\n
+ \ SN Comput. Sci. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Softw%20Pract%20Exper.%22&wl=0\n
+ \ Softw Pract Exper. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Surf.%20Coat.%20Technol.%22&wl=0\n
+ \ Surf. Coat. Technol. \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Swiss%20Journal%20of%20Geosciences%22&wl=0\n
+ \ Swiss Journal of Geosciences \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Swiss%20Medical%20Weekly%22&wl=0\n
+ \ Swiss Medical Weekly \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22The%20Messenger%22&wl=0\n
+ \ The Messenger \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22The%20Physics%20Educator%22&wl=0\n
+ \ The Physics Educator \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Transport%20in%20Porous%20Media%22&wl=0\n
+ \ Transport in Porous Media \n \n \n
+ \ 1 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22Vacuum%22&wl=0\n
+ \ Vacuum \n \n \n 975 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%20773__p%3A%22TOTAL%22&wl=0\n
+ \ TOTAL \n \n \n "
headers:
Access-Control-Allow-Origin:
- '*'
Cache-Control:
- - public, max-age=3600, no-cache="set-cookie"
+ - no-cache="set-cookie"
Connection:
- Keep-Alive
- Content-Encoding:
- - gzip
- Content-Length:
- - '1726'
Content-Type:
- - text/xml
+ - application/xml
Date:
- - Fri, 27 Oct 2023 09:56:53 GMT
+ - Fri, 10 Nov 2023 09:45:03 GMT
Keep-Alive:
- timeout=15, max=100
Server:
- Apache
Set-Cookie:
- INVENIOSESSIONstub=NO; path=/; HttpOnly
- - INVENIOSESSION=695ef8278edc799c9856114d95d00572; path=/; HttpOnly
- Vary:
- - ETag,Cache-Control,Accept-Encoding
+ - INVENIOSESSION=f2b7147dd65be096d44662384a1a37fa; path=/; HttpOnly
+ Transfer-Encoding:
+ - chunked
Via:
- 1.1 cds.cern.ch
status:
diff --git a/annual-reports/tests/cassettes/TestAPI.test_subjects.yaml b/annual-reports/tests/cassettes/TestAPI.test_subjects.yaml
new file mode 100644
index 0000000..9591df1
--- /dev/null
+++ b/annual-reports/tests/cassettes/TestAPI.test_subjects.yaml
@@ -0,0 +1,192 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python-requests/2.31.0
+ method: GET
+ uri: https://cds.cern.ch/tools/custom_query_summary.py?end=2022&otag=65017a&refresh=1&repeated_values=0&start=2022
+ response:
+ body:
+ string: "\n\n\n \n 357 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Particle%20Physics%20-%20Experiment%22&wl=0\n
+ \ Particle Physics - Experiment \n \n \n
+ \ 255 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Particle%20Physics%20-%20Phenomenology%22&wl=0\n
+ \ Particle Physics - Phenomenology \n \n \n
+ \ 203 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22hep-ph%22&wl=0\n
+ \ hep-ph \n \n \n 172 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22hep-ex%22&wl=0\n
+ \ hep-ex \n \n \n 156 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Detectors%20and%20Experimental%20Techniques%22&wl=0\n
+ \ Detectors and Experimental Techniques \n \n
+ \ \n 115 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Nuclear%20Physics%20-%20Experiment%22&wl=0\n
+ \ Nuclear Physics - Experiment \n \n \n
+ \ 114 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Particle%20Physics%20-%20Theory%22&wl=0\n
+ \ Particle Physics - Theory \n \n \n
+ \ 113 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Accelerators%20and%20Storage%20Rings%22&wl=0\n
+ \ Accelerators and Storage Rings \n \n \n
+ \ 96 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Astrophysics%20and%20Astronomy%22&wl=0\n
+ \ Astrophysics and Astronomy \n \n \n
+ \ 86 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22hep-th%22&wl=0\n
+ \ hep-th \n \n \n 62 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.ins-det%22&wl=0\n
+ \ physics.ins-det \n \n \n 60 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22General%20Relativity%20and%20Cosmology%22&wl=0\n
+ \ General Relativity and Cosmology \n \n \n
+ \ 48 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22gr-qc%22&wl=0\n
+ \ gr-qc \n \n \n 47 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22astro-ph.CO%22&wl=0\n
+ \ astro-ph.CO \n \n \n 42 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22nucl-ex%22&wl=0\n
+ \ nucl-ex \n \n \n 41 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Computing%20and%20Computers%22&wl=0\n
+ \ Computing and Computers \n \n \n
+ \ 39 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Nuclear%20Physics%20-%20Theory%22&wl=0\n
+ \ Nuclear Physics - Theory \n \n \n
+ \ 28 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.acc-ph%22&wl=0\n
+ \ physics.acc-ph \n \n \n 27 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Other%20Fields%20of%20Physics%22&wl=0\n
+ \ Other Fields of Physics \n \n \n
+ \ 25 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22nucl-th%22&wl=0\n
+ \ nucl-th \n \n \n 23 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Health%20Physics%20and%20Radiation%20Effects%22&wl=0\n
+ \ Health Physics and Radiation Effects \n \n
+ \ \n 17 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Particle%20Physics%20-%20Lattice%22&wl=0\n
+ \ Particle Physics - Lattice \n \n \n
+ \ 16 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22astro-ph.HE%22&wl=0\n
+ \ astro-ph.HE \n \n \n 15 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Mathematical%20Physics%20and%20Mathematics%22&wl=0\n
+ \ Mathematical Physics and Mathematics \n \n
+ \ \n 15 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Physics%20in%20General%22&wl=0\n
+ \ Physics in General \n \n \n 14 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22cs.LG%22&wl=0\n
+ \ cs.LG \n \n \n 13 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22General%20Theoretical%20Physics%22&wl=0\n
+ \ General Theoretical Physics \n \n \n
+ \ 13 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22hep-lat%22&wl=0\n
+ \ hep-lat \n \n \n 13 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22quant-ph%22&wl=0\n
+ \ quant-ph \n \n \n 9 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Quantum%20Technology%22&wl=0\n
+ \ Quantum Technology \n \n \n 8 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Engineering%22&wl=0\n
+ \ Engineering \n \n \n 8 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.data-an%22&wl=0\n
+ \ physics.data-an \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22astro-ph.IM%22&wl=0\n
+ \ astro-ph.IM \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Chemical%20Physics%20and%20Chemistry%22&wl=0\n
+ \ Chemical Physics and Chemistry \n \n \n
+ \ 6 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Condensed%20Matter%22&wl=0\n
+ \ Condensed Matter \n \n \n 6 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Education%20and%20Outreach%22&wl=0\n
+ \ Education and Outreach \n \n \n
+ \ 4 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22astro-ph.GA%22&wl=0\n
+ \ astro-ph.GA \n \n \n 4 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22cond-mat.str-el%22&wl=0\n
+ \ cond-mat.str-el \n \n \n 4 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Data%20Analysis%20and%20Statistics%22&wl=0\n
+ \ Data Analysis and Statistics \n \n \n
+ \ 4 \n http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22math.AG%22&wl=0\n
+ \ math.AG \n \n \n 4 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Other%22&wl=0\n
+ \ Other \n \n \n 4 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.atom-ph%22&wl=0\n
+ \ physics.atom-ph \n \n \n 4 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.comp-ph%22&wl=0\n
+ \ physics.comp-ph \n \n \n 4 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.plasm-ph%22&wl=0\n
+ \ physics.plasm-ph \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22cond-mat.stat-mech%22&wl=0\n
+ \ cond-mat.stat-mech \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22cs.CV%22&wl=0\n
+ \ cs.CV \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22math-ph%22&wl=0\n
+ \ math-ph \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22math.MP%22&wl=0\n
+ \ math.MP \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Nonlinear%20Systems%22&wl=0\n
+ \ Nonlinear Systems \n \n \n 3 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.gen-ph%22&wl=0\n
+ \ physics.gen-ph \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22math.DS%22&wl=0\n
+ \ math.DS \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22nlin.SI%22&wl=0\n
+ \ nlin.SI \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.chem-ph%22&wl=0\n
+ \ physics.chem-ph \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.med-ph%22&wl=0\n
+ \ physics.med-ph \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.optics%22&wl=0\n
+ \ physics.optics \n \n \n 2 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22stat.ML%22&wl=0\n
+ \ stat.ML \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22astro-ph.EP%22&wl=0\n
+ \ astro-ph.EP \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22astro-ph.SR%22&wl=0\n
+ \ astro-ph.SR \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22cond-mat.mes-hall%22&wl=0\n
+ \ cond-mat.mes-hall \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22cond-mat.other%22&wl=0\n
+ \ cond-mat.other \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22cond-mat.quant-gas%22&wl=0\n
+ \ cond-mat.quant-gas \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22cs.AR%22&wl=0\n
+ \ cs.AR \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22cs.DC%22&wl=0\n
+ \ cs.DC \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22cs.PF%22&wl=0\n
+ \ cs.PF \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22math.AT%22&wl=0\n
+ \ math.AT \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22math.CA%22&wl=0\n
+ \ math.CA \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22math.DG%22&wl=0\n
+ \ math.DG \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22nlin.CD%22&wl=0\n
+ \ nlin.CD \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22Other%20Subjects%22&wl=0\n
+ \ Other Subjects \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.app-ph%22&wl=0\n
+ \ physics.app-ph \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.ed-ph%22&wl=0\n
+ \ physics.ed-ph \n \n \n 1 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22physics.soc-ph%22&wl=0\n
+ \ physics.soc-ph \n \n \n 2352 \n
+ \ http://cds.cern.ch/search?p=980%3AARTICLE%20and%20%28affiliation%3ACERN%20or%20595%3A%27For%20annual%20report%27%29%20not%20980%3AConferencePaper%20not%20980%3ABookChapter%20not%20595%3A%27Not%20for%20annual%20report%27%20and%20year%3A2022%20and%2065017a%3A%22TOTAL%22&wl=0\n
+ \ TOTAL \n \n \n "
+ headers:
+ Access-Control-Allow-Origin:
+ - '*'
+ Cache-Control:
+ - no-cache="set-cookie"
+ Connection:
+ - Keep-Alive
+ Content-Type:
+ - application/xml
+ Date:
+ - Fri, 10 Nov 2023 09:45:27 GMT
+ Keep-Alive:
+ - timeout=15, max=100
+ Server:
+ - Apache
+ Set-Cookie:
+ - INVENIOSESSIONstub=NO; path=/; HttpOnly
+ - INVENIOSESSION=40dc909f530ac2e44bd79bab1f88f7b0; path=/; HttpOnly
+ Transfer-Encoding:
+ - chunked
+ Via:
+ - 1.1 cds.cern.ch
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/annual-reports/tests/conftest.py b/annual-reports/tests/conftest.py
new file mode 100644
index 0000000..3fadd5d
--- /dev/null
+++ b/annual-reports/tests/conftest.py
@@ -0,0 +1,11 @@
+import pytest
+
+
+@pytest.fixture(scope="session")
+def vcr_config():
+ return {
+ "filter_query_parameters": ["apikey"],
+ "ignore_localhost": True,
+ "decode_compressed_response": True,
+ "record_mode": "once",
+ }
diff --git a/annual-reports/tests/test_api.py b/annual-reports/tests/test_api.py
index 0e0cd5c..3a18a51 100644
--- a/annual-reports/tests/test_api.py
+++ b/annual-reports/tests/test_api.py
@@ -15,210 +15,323 @@ def setup_class(self):
db_host="localhost",
db_port="5432",
db_name="annual",
+ cds_token="haha",
)
+
+ @pytest.fixture(autouse=True)
+ def setup_tests(self):
+ self.annual_reports.drop_tables()
self.annual_reports.create_tables()
+ yield
+ self.annual_reports.drop_tables()
@pytest.mark.vcr()
def test_publications(self):
- with Session(self.annual_reports.engine) as session:
- publications = session.query(Publications).all()
- assert len(publications) == 0
-
self.annual_reports.get_publications()
with Session(self.annual_reports.engine) as session:
publications = session.query(Publications).all()
assert len(publications) == 1
- assert publications[0].publications == 2127
- assert publications[0].published_articles == 982
- assert publications[0].contributions_to_conference_proceedings == 1118
- assert publications[0].reports_books_and_book_chapters == 26
- assert publications[0].theses == 275
+ assert publications[0].publications == 2123
+ assert publications[0].journals == 978
+ assert publications[0].contributions == 1117
+ assert publications[0].rest == 27
+ assert publications[0].theses == 278
assert publications[0].year == datetime.date(2022, 1, 1)
- with Session(self.annual_reports.engine) as session:
- session.query(Publications).delete()
- session.commit()
-
@pytest.mark.vcr()
- def test_categories(self):
- with Session(self.annual_reports.engine) as session:
- categories = session.query(Categories).all()
- assert len(categories) == 0
-
- self.annual_reports.get_categories()
+ def test_subjects(self):
+ self.annual_reports.get_subjects()
with Session(self.annual_reports.engine) as session:
categories = session.query(Categories).all()
- assert len(categories) == 19
+ assert len(categories) == 72
expected = {
- "Computing and Computers": 16,
- "Accelerators and Storage Rings": 38,
- "Astrophysics and Astronomy": 16,
- "Nuclear Physics - Experiment": 15,
- "Health Physics and Radiation Effects": 1,
- "Detectors and Experimental Techniques": 44,
- "Quantum Technology": 7,
- "Mathematical Physics and Mathematics": 5,
- "Education and Outreach": 3,
- "Physics in General": 6,
- "Particle Physics - Experiment": 18,
- "General Theoretical Physics": 2,
- "Other Fields of Physics": 3,
- "Particle Physics - Phenomenology": 22,
- "General Relativity and Cosmology": 6,
- "Particle Physics - Theory": 6,
- "Particle Physics - Lattice": 2,
- "Nuclear Physics - Theory": 6,
- "Engineering": 1,
+ "Particle Physics - Experiment": 357,
+ "Particle Physics - Phenomenology": 255,
+ "hep-ph": 203,
+ "hep-ex": 172,
+ "Detectors and Experimental Techniques": 156,
+ "Nuclear Physics - Experiment": 115,
+ "Particle Physics - Theory": 114,
+ "Accelerators and Storage Rings": 113,
+ "Astrophysics and Astronomy": 96,
+ "hep-th": 86,
+ "physics.ins-det": 62,
+ "General Relativity and Cosmology": 60,
+ "gr-qc": 48,
+ "astro-ph.CO": 47,
+ "nucl-ex": 42,
+ "Computing and Computers": 41,
+ "Nuclear Physics - Theory": 39,
+ "physics.acc-ph": 28,
+ "Other Fields of Physics": 27,
+ "nucl-th": 25,
+ "Health Physics and Radiation Effects": 23,
+ "Particle Physics - Lattice": 17,
+ "astro-ph.HE": 16,
+ "Mathematical Physics and Mathematics": 15,
+ "Physics in General": 15,
+ "cs.LG": 14,
+ "General Theoretical Physics": 13,
+ "hep-lat": 13,
+ "quant-ph": 13,
+ "Quantum Technology": 9,
+ "Engineering": 8,
+ "physics.data-an": 8,
+ "astro-ph.IM": 6,
+ "Chemical Physics and Chemistry": 6,
+ "Condensed Matter": 6,
+ "Education and Outreach": 6,
+ "astro-ph.GA": 4,
+ "cond-mat.str-el": 4,
+ "Data Analysis and Statistics": 4,
+ "math.AG": 4,
+ "Other": 4,
+ "physics.atom-ph": 4,
+ "physics.comp-ph": 4,
+ "physics.plasm-ph": 4,
+ "cond-mat.stat-mech": 3,
+ "cs.CV": 3,
+ "math-ph": 3,
+ "math.MP": 3,
+ "Nonlinear Systems": 3,
+ "physics.gen-ph": 3,
+ "math.DS": 2,
+ "nlin.SI": 2,
+ "physics.chem-ph": 2,
+ "physics.med-ph": 2,
+ "physics.optics": 2,
+ "stat.ML": 2,
+ "astro-ph.EP": 1,
+ "astro-ph.SR": 1,
+ "cond-mat.mes-hall": 1,
+ "cond-mat.other": 1,
+ "cond-mat.quant-gas": 1,
+ "cs.AR": 1,
+ "cs.DC": 1,
+ "cs.PF": 1,
+ "math.AT": 1,
+ "math.CA": 1,
+ "math.DG": 1,
+ "nlin.CD": 1,
+ "Other Subjects": 1,
+ "physics.app-ph": 1,
+ "physics.ed-ph": 1,
+ "physics.soc-ph": 1,
}
for category in categories:
assert category.category in expected
assert category.count == expected[category.category]
assert category.year == datetime.date(2022, 1, 1)
- with Session(self.annual_reports.engine) as session:
- session.query(Categories).delete()
- session.commit()
-
@pytest.mark.vcr()
def test_journals(self):
- with Session(self.annual_reports.engine) as session:
- journals = session.query(Journals).all()
- assert len(journals) == 0
-
- self.annual_reports.get_journals()
+ self.annual_reports.get_publications()
with Session(self.annual_reports.engine) as session:
journals = session.query(Journals).all()
- assert len(journals) == 117
+ assert len(journals) == 193
expected = {
- "JISTaP": 1,
- "IEEE Trans. Appl. Supercond.": 2,
- "The Messenger": 1,
- "IFAC-PapersOnLine": 1,
- "Future Microbiology": 1,
- "Frontiers in Medicine": 1,
- "J. Radiol. Prot.": 1,
- "EJNMMI Physics": 1,
- "Nature Chem.": 1,
- "Transport in Porous Media": 1,
+ "JHEP": 173,
+ "Phys. Rev. D": 100,
+ "Eur. Phys. J. C": 71,
+ "Phys. Rev. Lett.": 50,
+ "Phys. Lett. B": 44,
+ "JINST": 41,
+ "Nucl. Instrum. Methods Phys. Res., A": 40,
+ "Phys. Rev. Accel. Beams": 25,
+ "Eur. Phys. J. Plus": 23,
+ "Phys. Rev. C": 20,
+ "IEEE Trans. Nucl. Sci.": 19,
+ "JCAP": 15,
+ "Front. Phys.": 13,
+ "Nature": 10,
+ "SciPost Phys.": 9,
+ "Comput. Softw. Big Sci.": 8,
+ "Eur. Phys. J. A": 7,
+ "Mach. Learn. Sci. Tech.": 7,
+ "Sci. Rep.": 7,
+ "Appl. Sciences": 6,
+ "Crystals": 6,
+ "EPJ Tech. Instrum.": 6,
+ "IEEE Trans. Appl. Supercond.": 6,
+ "Nature Phys.": 6,
+ "Supercond. Sci. Technol.": 6,
+ "Symmetry": 6,
+ "Front. Big Data": 5,
+ "Phys. Rev. B": 5,
+ "Rep. Prog. Phys.": 5,
+ "Rev. Sci. Instrum.": 5,
+ "Sensors": 5,
+ "Ann. Phys. (Leipzig)": 4,
+ "Astron. Astrophys.": 4,
+ "Nucl. Instrum. Methods Phys. Res., B": 4,
+ "Appl. Phys. Lett.": 3,
+ "Appl. Radiat. Isot.": 3,
+ "Comput. Phys. Commun.": 3,
+ "Cryogenics": 3,
+ "Fortschr. Phys.": 3,
"IEEE Access": 3,
- "Materials": 1,
+ "Instruments": 3,
+ "Int. J. Mod. Phys. A": 3,
+ "J. Phys. A": 3,
+ "J. Phys. G": 3,
+ "MDPI Physics": 3,
+ "Mon. Not. R. Astron. Soc.": 3,
+ "Nature Commun.": 3,
+ "New J. Phys.": 3,
+ "Nucl. Phys. News": 3,
+ "Phys. Rev. A": 3,
+ "Prog. Part. Nucl. Phys.": 3,
+ "Quantum": 3,
+ "Universe": 3,
+ "Astropart. Phys.": 2,
+ "Class. Quantum Gravity": 2,
"Environ. Sci. Technol.": 2,
- "IEEE Trans. Rad. Plasma Med. Sci.": 2,
- "CEAS Space J.": 1,
- "Environments": 1,
+ "EPL": 2,
+ "IEEE Sensors J.": 2,
"IEEE Trans. Parallel Distrib. Syst.": 2,
- "IEEE Systems J.": 1,
- "J. Chem. Phys.": 1,
- "J. Math. Industry": 1,
- "Inverse Prob. Imaging": 1,
+ "IEEE Trans. Rad. Plasma Med. Sci.": 2,
+ "Int. J. Heat Mass Transf.": 2,
+ "Nucl. Phys. B": 2,
"Photon.": 2,
- "Chin. Phys. C": 1,
- "Polymers": 1,
- "J. Comput. Appl. Math.": 1,
- "Eur. Financ. Manag.": 1,
- "MagnetoHydrodyn.": 1,
- "Phys. Educ.": 1,
- "Atmos. Chem. Phys.": 1,
- "Phys. Status Solidi B": 1,
+ "Phys. Dark Univ.": 2,
+ "Phys. Educ.": 2,
+ "Phys. Med. Biol.": 2,
+ "Phys. Rev. E": 2,
+ "Phys. Rev. Res.": 2,
+ "PTEP": 2,
+ "SciPost Phys. Proc.": 2,
+ "ACM Trans. Reconf. Tech. Syst.": 1,
"ACM Transactions on Privacy and Security": 1,
- "Comput. Phys. Commun.": 1,
- "Crystals": 5,
+ "ACS Earth Space Chem.": 1,
"Acta Mater.": 1,
- "ChemPhysChem": 1,
- "Swiss Journal of Geosciences": 1,
- "Front. Phys.": 4,
- "Robotics": 1,
- "Nucl. Instrum. Methods Phys. Res., A": 12,
- "Phys. Rev. Accel. Beams": 9,
- "IEEE Trans. Educ.": 1,
- "J. Mach. Learn. Res.": 1,
- "J. Integer Sequences": 1,
- "Batteries": 1,
- "Comp. Meth. Appl. Math.": 1,
- "Pharmaceutics": 1,
- "Fortschr. Phys.": 1,
- "JHEP": 11,
- "IEEE Trans. Plasma Sci.": 1,
- "Phys. Part. Nucl. Lett.": 1,
"Advanced Materials Interfaces": 1,
- "MDPI Physics": 2,
- "Phys. Rev. D": 6,
- "EPL": 1,
- "Phys. Rev. C": 5,
- "Appl. Opt.": 1,
- "Nature Astron.": 1,
- "JINST": 10,
+ "Advances in Radiation Oncology": 1,
"AIP Adv.": 1,
- "JCAP": 1,
- "Res. Notes AAS": 1,
- "Appl. Sciences": 3,
- "J. Appl. Phys.": 1,
- "J. Phys. A": 1,
- "Eur. Phys. J. A": 1,
- "Astron. Astrophys.": 1,
- "Instruments": 1,
- "IEEE Trans. Quantum Eng.": 1,
- "Radiat. Prot. Dosim.": 1,
+ "Anal. Chim. Acta": 1,
+ "Ann. Rev. Nucl. Part. Sci.": 1,
+ "Appl. Opt.": 1,
+ "Astrophys. J. Lett.": 1,
+ "Atmos. Chem. Phys.": 1,
+ "Batteries": 1,
"Bull. Russ. Acad. Sci. Phys.": 1,
- "IEEE Sensors J.": 1,
- "Int. J. Sci. Edu.": 1,
+ "CEAS Space J.": 1,
+ "ChemPhysChem": 1,
+ "Chin. Phys. C": 1,
+ "Clinical and Translational Radiation Oncology": 1,
+ "Commun. Math. Phys.": 1,
+ "Comp. Meth. Appl. Math.": 1,
+ "Data in Brief": 1,
+ "EJNMMI Physics": 1,
+ "Environmental Science: Atmospheres": 1,
+ "Environments": 1,
+ "Eur. Financ. Manag.": 1,
+ "Eur. J. Phys.": 1,
+ "Eur. Phys. J.": 1,
+ "Eur. Phys. J. D": 1,
+ "Eur. Phys. J. Spec. Top.": 1,
+ "Experimental Thermal and Fluid Science": 1,
+ "Few-Body Syst.": 1,
"Fire Safety J.": 1,
"Front. Chem.": 1,
- "Environmental Science: Atmospheres": 1,
- "Mach. Learn. Sci. Tech.": 2,
- "Roy. Soc. Open Sci.": 1,
- "EPJ Tech. Instrum.": 2,
- "Eur. Phys. J. Plus": 4,
+ "Frontiers in Medicine": 1,
+ "Future Gener. Comput. Syst.": 1,
+ "Future Microbiology": 1,
+ "Geochim. Cosmochim. Acta": 1,
+ "Heliyon": 1,
+ "IEEE Systems J.": 1,
+ "IEEE Trans. Educ.": 1,
+ "IEEE Trans. Electron Devices": 1,
+ "IEEE Trans. Microw. Theory Tech.": 1,
+ "IEEE Trans. Plasma Sci.": 1,
+ "IEEE Trans. Quantum Eng.": 1,
+ "IFAC-PapersOnLine": 1,
+ "Int. J. Heat Fluid FL": 1,
+ "Int. J. Sci. Edu.": 1,
+ "Int. J. Theor. Phys.": 1,
+ "Interface Focus": 1,
+ "Inverse Prob. Imaging": 1,
+ "J. Appl. Phys.": 1,
+ "J. Chem. Phys.": 1,
+ "J. Comput. Appl. Math.": 1,
+ "J. Integer Sequences": 1,
+ "J. Lightwave Technol.": 1,
+ "J. Mach. Learn. Res.": 1,
"J. Mater. Chem.": 1,
- "Front. Big Data": 1,
- "Sensors": 1,
- "The Physics Educator": 1,
- "Phys. Rev. B": 2,
+ "J. Mater. Process Tech.": 1,
+ "J. Math. Industry": 1,
+ "J. Phys. B": 1,
+ "J. Phys. D": 1,
+ "J. Phys.: Conf. Ser.": 1,
+ "J. Radioanal. Nucl. Chem.": 1,
+ "J. Radiol. Prot.": 1,
+ "J. Res. Sci. Teach.": 1,
+ "J. Stat. Phys.": 1,
"J. Vac. Sci. Technol. A": 1,
+ "JHEAp": 1,
+ "JISTaP": 1,
+ "Living Rev. Relativ.": 1,
+ "MagnetoHydrodyn.": 1,
+ "Materials": 1,
"Materials Advances": 1,
- "Sci. Rep.": 3,
- "PoS": 1,
- "Supercond. Sci. Technol.": 4,
- "Rev. Sci. Instrum.": 1,
- "Nature": 1,
+ "Meas. Sci. Technol.": 1,
+ "Metrolog.": 1,
+ "Microelectron. Eng.": 1,
+ "Microelectron. Reliab.": 1,
+ "Mod. Phys. Lett. A": 1,
"Model. Simul. Eng.": 1,
- "Comput. Softw. Big Sci.": 1,
- "Appl. Radiat. Isot.": 2,
- "Phys. Lett. B": 2,
- "Phys. Rev. E": 2,
- "Swiss Medical Weekly": 1,
- "J. Radioanal. Nucl. Chem.": 1,
- "Nucl. Phys. News": 2,
- "Nature Commun.": 1,
- "PTEP": 1,
- "Phys. Rev. Res.": 1,
- "Nucl. Instrum. Methods Phys. Res., B": 2,
- "New J. Phys.": 1,
- "J. Lightwave Technol.": 1,
+ "Nature Astron.": 1,
+ "Nature Chem.": 1,
+ "Nature Mach. Intell.": 1,
+ "Nature Rev. Phys.": 1,
+ "Nuovo Cimento, Riv.": 1,
"Opt. Lett.": 1,
- "Symmetry": 1,
- "Pramana - J. Phys.": 1,
- "Few-Body Syst.": 1,
- "IEEE Trans. Nucl. Sci.": 1,
- "Eur. Phys. J. C": 2,
- "J. Phys. D": 1,
- "Phys. Rev. Lett.": 3,
- "Astrophys. J. Lett.": 1,
+ "Optica": 1,
+ "Optical Materials Express": 1,
+ "Particles": 1,
+ "Pharmaceutics": 1,
+ "Philos. Trans. R. Soc. Lond. A": 1,
+ "Phys. Part. Nucl.": 1,
+ "Phys. Part. Nucl. Lett.": 1,
"Phys. Plasmas": 1,
- "IEEE Trans. Electron Devices": 1,
+ "Phys. Rep.": 1,
+ "Phys. Status Solidi B": 1,
+ "Physica Medica": 1,
+ "Physics": 1,
+ "Polymers": 1,
+ "PoS": 1,
+ "Pramana - J. Phys.": 1,
"Rad. Det. Tech. Meth.": 1,
+ "Radiat. Meas.": 1,
+ "Radiat. Phys. Chem.": 1,
+ "Radiat. Prot. Dosim.": 1,
+ "Radiother. Oncol.": 1,
+ "Res. Notes AAS": 1,
+ "Research Outreach": 1,
+ "Robotics": 1,
+ "Roy. Soc. Open Sci.": 1,
+ "Sci. Adv.": 1,
+ "Sci. Bull.": 1,
+ "Sci. Data": 1,
+ "Science": 1,
+ "Smart Mater. Struct.": 1,
+ "SN Comput. Sci.": 1,
+ "Softw Pract Exper.": 1,
+ "Surf. Coat. Technol.": 1,
+ "Swiss Journal of Geosciences": 1,
+ "Swiss Medical Weekly": 1,
+ "The Messenger": 1,
+ "The Physics Educator": 1,
+ "Transport in Porous Media": 1,
+ "Vacuum": 1,
}
+
for journal in journals:
assert journal.journal in expected
assert journal.count == expected[journal.journal]
assert journal.year == datetime.date(2022, 1, 1)
-
- with Session(self.annual_reports.engine) as session:
- session.query(Journals).delete()
- session.commit()